| Work | David Ari Ostenfeldt, s194237 | Kristian Rhindal Møllman, s194246 | Kristoffer Marboe, s194249 |
|---|---|---|---|
| Data | 40% | 30% | 30% |
| Networks | 30% | 40% | 30% |
| Text | 30% | 30% | 40% |
| Website | 33% | 33% | 33% |
| Explainer notebook | 33% | 33% | 33% |
Everyone contributed equally to this project.
from lyricsgenius import Genius
import re
import billboard
import datetime as dt
from datetime import datetime, timedelta
import pandas as pd
import numpy as np
from tqdm import tqdm
import time
import os
from requests.exceptions import Timeout
from ast import literal_eval
import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
import matplotlib.gridspec as gridspec
import seaborn as sns
from collections import defaultdict
import langdetect
import nltk.tokenize
from langdetect import detect, detect_langs
import networkx as nx
import netwulf as nw
from itertools import combinations
from collections import defaultdict
import random
from scipy import stats
from networkx.algorithms import community
import community
import json
import plotly.io as plotly
import plotly.tools as tls
from plotly.offline import download_plotlyjs, init_notebook_mode, iplot
import nltk
from PIL import Image
from nltk.corpus import stopwords
from nltk.stem.wordnet import WordNetLemmatizer
from wordcloud import WordCloud, ImageColorGenerator
from glob import glob
plotly_folder = '../static/plotly/'
seed = 1337
random.seed(seed)
np.random.seed(seed)
The dataset we will be analysing is a collection of songs, each with the artists that worked on them, the lyrics, and the release date.
The network will be created with each artist as a node and the links will be if the artists have collaborated on a song.
The text analysis will be conducted on the lyrics of all the songs gathered.
Musicians tend to collaborate together, which we thought would make for an interesting network. Furthermore, investigating the different artists language through their song lyrics to find patterns and attributes would be fun.
We wanted to provide some insight into how artists collaborate, which genres and artists collaborate more and how the language between genres and artists differs. Furthermore, by providing the data set for the user, we also let them play around with it on their own, to investigate further genres, or e.g. looking at how a specific artist has developed through the years.
The first part of any project is collecting the data. We needed a list of songs to collect from Genius, and for this purpose we chose Billboards 'The Hot 100' list. The list goes back all the way to 1958, and updates every week. In theory that should grant us a total of 5200 songs a year * 62 years, which means 322400 possible songs.
To collect the list of songs we used the billboard.py module, which is an interface of Billboards API for python.
Note: The code in this section is not meant to be run, it is simply to show how we collected the data
chart = billboard.ChartData('hot-100', date="1960-01-04", fetch=True, timeout=50)
# Create empty dataframe
columns = ['title', 'artist', 'rank', 'date', 'weeks']
songInfo = pd.DataFrame(None, columns=columns)
start = datetime.strptime('Jan 4 1960', '%b %d %Y')
end = datetime.now()
#end = datetime.strptime('Jan 4 1961', '%b %d %Y')
# Run the code below to scrape BillBoard 100
# outer_bar = tqdm(range(len(list(rrule.rrule(rrule.WEEKLY, dtstart=start, until=end)))), desc=f"Progress", position=0, leave=True)
# for dt in rrule.rrule(rrule.WEEKLY, dtstart=start, until=end):
# outer_bar.update(1)
# chart = billboard.ChartData('hot-100', date=dt.strftime("%Y-%m-%d"), fetch=True, timeout=25)
# for song in chart:
# if dt == start:
# songInfo.loc[len(songInfo)] = [song.title, song.artist, song.rank, dt.strftime("%Y-%m-%d"), song.weeks]
# else:
# if song.isNew:
# songInfo.loc[len(songInfo)] = [song.title, song.artist, song.rank, dt.strftime("%Y-%m-%d"), song.weeks]
# # else:
# # index = (songInfo['title'] == song.title) & (songInfo['artist'] == song.artist)
# # index = np.argmax(index)
# # #row = (songInfo['title'] == song.title) & (songInfo['artist'] == song.artist)
# # if len(songInfo.iloc[index]) == 0:
# # songInfo.loc[len(songInfo)] = [song.title, song.artist, song.rank, dt.strftime("%Y-%m-%d"), song.weeks]
# # elif song.rank > songInfo.loc[index, "rank"]:
# # songInfo.loc[index, "rank"] = song.rank
# # songInfo.loc[index, "date"] = dt.strftime("%Y-%m-%d")
# songInfo.to_csv("songInfo.csv")
# songInfo.to_csv("songInfo_noIndex.csv",index=False)
token = 'UNXh1BykDmagMbxVjcAeMXiwDhnkmgsDC3a2AM2YWRKzLhLDpxsRJzfdvXP2cXRZ'
genius = Genius(token, timeout=20, remove_section_headers=True, verbose=False, skip_non_songs=False)
First we create some helper functions, that we will make use of when searching for songs.
The find_artist function takes a name and returns an artist.
find_song takes an artist and a song title and returns a song.
artist_to_list returns a list of artists.
process_artist_names uses regex to find all the seperate artists in the given name segment.
feature_expressions = ['feature', 'feat.', 'ft.', ' with ', '(with ']
extra_expressions = [' and ', ' & ', ',']
def find_artist(name):
artist = genius.search_artist(name, max_songs=0)
if artist is not None:
return artist
name = name.lower()
og_name = name
for fe in feature_expressions:
if fe in name:
name = name.split(fe)[0]
break
if name != og_name:
artist = genius.search_artist(name, max_songs=0)
if artist is not None:
return artist
name = name.replace('(', '')
name = name.replace(')', '')
artist = genius.search_artist(name.replace(' and ', ' & '), max_songs=0)
if artist is not None:
return artist
og_name = name
for ee in extra_expressions:
if ee in name:
name = name.split(ee)[0]
if name != og_name:
artist = genius.search_artist(name, max_songs=0)
return artist
def find_song(artist, title):
song = genius.search_song(title, artist)
if song is not None:
return song
artist = artist.lower()
og_artist = artist
for fe in feature_expressions:
if fe in artist:
artist = artist.split(fe)[0]
break
if artist != og_artist:
song = genius.search_song(title, artist.title())
if song is not None:
return song
artist = artist.replace('(', '')
artist = artist.replace(')', '')
artist_and = artist.replace(' and ', ' & ')
if artist != artist_and:
song = genius.search_song(title, artist_and.title())
if song is not None:
return song
og_artist = artist
for ee in extra_expressions:
if ee in artist:
artist = artist.split(ee)[0]
if artist != og_artist:
song = genius.search_song(title, artist.title())
if song is not None:
return song
song = genius.search_song(title)
return song
def artist_to_list(name_segment):
if ' & ' in name_segment:
artist_list = name_segment.split(' & ')
if ', ' in artist_list[0]:
artist_list = artist_list[0].split(', ') + [artist_list[1]]
return artist_list
return [name_segment]
def process_artist_names(artist_names):
ft_code = '(?<=\(Ft\. )(.*?)(?=\))'
main_code = '(.*?) \('
features = re.findall(ft_code, artist_names)
if not features:
main_artists = artist_names
all_artists = artist_to_list(main_artists)
else:
all_artists = artist_to_list(features[0])
main_artists = re.findall(main_code, artist_names)
all_artists += artist_to_list(main_artists[0])
return all_artists
def convert_date(date):
try:
if len(date) < 5:
conv_date = datetime.strptime(date, '%Y')
conv_date_str = datetime.strftime(conv_date, '%Y')
else:
conv_date = datetime.strptime(date, '%B %d, %Y')
conv_date_str = datetime.strftime(conv_date, '%Y-%m-%d')
except:
return date
return conv_date_str
When searching for songs using the Genius API, we used a sequential searching strategy. This means that we would first search for the song title and full artist name and if that does not yield any results, we first split the artist name at 'feature', 'feat.', 'ft.' or 'with' and then search for the song title and the first partition of the artists name query. If this still doesn't result in any valid song, we remove parentheses from the artist names and replace 'and' with '&', after which we again search for the song title and artists name. If this fails as well, we try splitting the modified artist names at '&' and ',' and search again. If none of these steps result in a valid song, we simply search for the song title and hope for the best.
Immediately after loading a song, we make sure it is actually a song. To do this, we filter out songs with specific genres/tags, as Genius also house texts which are not song lyrics. We therefore used the following list of bad genres to avoid those; ['track\\s?list', 'album art(work)?', 'liner notes', 'booklet', 'credits', 'interview', 'skit', 'instrumental', 'setlist', 'non-music', 'literature'].
The last step before all the raw data was gathered, was to separate all artists for each song. This was done using regex to find and split artists at ',', 'and', 'featuring' and so on. This results in the artists Megan Thee Stallion & Dua Lipa for the song Sweetest Pie to be changed to [Megan Thee Stallion, Dua Lipa] and the artists Lil Durk Featuring Gunna for the song What Happened To Virgil to be changed to [Lil Durk, Gunna]. However, a negative side effect of this processing is, that artists like the previously mentioned Earth, Wind & Fire was changed to [Earth, Wind, Fire]. This was a necessary part of the preprocessing and these kinds of artists were regrouped later in the data cleaning.
columns = ['released', 'artists', 'lyrics', 'genres', 'title']
genius_df = pd.DataFrame(None, columns=columns)
bad_genres = {'track\\s?list', 'album art(work)?', 'liner notes', 'booklet', 'credits', 'interview', 'skit', 'instrumental', 'setlist', 'non-music', 'literature'}
John = '8======D'
flipped_John = 'C======8'
N = len(songInfo)
now = time.time()
successes = 0
last_checkpoint = 29100
step = 28
for i in range(last_checkpoint, N):
print(f'Succes rate: {successes} / {i-last_checkpoint}')
print('='*50)
while True:
try:
song = find_song(songInfo.artist[i], songInfo.title[i])
break
except:
print('Failed to find song... Trying again.')
pass
if song is None:
print('Failed at song:', songInfo.artist[i], 'with title:', songInfo.title[i], '\nDue to no song found')
continue
raw_lyrics = song.lyrics
if not raw_lyrics:
print('Failed at song:', songInfo.artist[i], 'with title:', songInfo.title[i], '\nDue to empty lyric')
continue
lyrics, genres_and_release_date = raw_lyrics.split(John)
raw_genres, release_date = genres_and_release_date.split(flipped_John)
genres = raw_genres.split('_')
bad_genre = None
for genre in genres:
if genre in bad_genres:
bad_genre = genre
break
if bad_genre is not None:
print('Failed at song:', songInfo.artist[i], 'with title:', songInfo.title[i], f'\nDue to bad genre: {bad_genre}')
continue
if release_date == 'Unknown':
release_date = songInfo.date[i]
else:
release_date = convert_date(release_date)
sd = song.to_dict()
title = sd['title']
artists = process_artist_names(sd['artist_names'])
genius_df.loc[i] = [release_date, artists, lyrics, genres, title]
if not (i+1) % step:
print('SAVING CHECKPOINT!')
genius_df.to_csv(f'songData{last_checkpoint}_{i}.csv')
try:
os.remove(f'songData{last_checkpoint}_{i-step}.csv')
except FileNotFoundError:
pass
successes += 1
now_now = time.time()
print(f'Song number {i+1} of {N}, time spent on song: {now_now - now:.2f} seconds')
now = now_now
# print(f'Artists: {songInfo.artist[i]:>10}, {" ".join(artists):>20}')
print(f'Artists: {songInfo.artist[i]:>20}')
print(f'{", ".join(artists):>29}')
print(f'Title: {songInfo.title[i][:20]:>32}')
print(f'{title[:20]:>39}')
print(f'Date: {songInfo.date[i]:>20}')
print(f'{release_date:>26}')
print(f'Genres: {", ".join(genres):>20}\n')
token = 'UNXh1BykDmagMbxVjcAeMXiwDhnkmgsDC3a2AM2YWRKzLhLDpxsRJzfdvXP2cXRZ'
genius = Genius(token, timeout=20, remove_section_headers=True, verbose=False, skip_non_songs=False)
for val, tit, art in zip(songData.index.values, songData.title, songData.artists):
if 'Genius' in ''.join(art):
print(val, art, tit)
try:
artist, rest = tit.split(' — ')
except:
#songData = songData.drop(val)
continue
print('='*50)
print(f'artist: {artist}')
print(f'title: {rest}')
title = rest.split('ft.')[0]
code = '(.*?) (?=\(.+ .+\))'
cut_title = re.findall(code, title)
if cut_title:
title = cut_title[0]
artist = artist.split(' & ')[0]
song = genius.search_song(title, artist)
raw_lyrics = song.lyrics
lyrics, genres_and_release_date = raw_lyrics.split(John)
raw_genres, release_date = genres_and_release_date.split(flipped_John)
genres = raw_genres.split('_')
if release_date == 'Unknown':
release_date = songInfo.date[val]
else:
release_date = convert_date(release_date)
sd = song.to_dict()
title = sd['title']
artists = process_artist_names(sd['artist_names'])
#songData.loc[val] = [release_date, artists, lyrics, genres, title]
print(f'Artists: {songInfo.artist[val]:>20}')
print(f'{", ".join(artists):>29}')
print(f'Title: {songInfo.title[val][:20]:>32}')
print(f'{title[:20]:>39}')
print(f'Date: {songInfo.date[val]:>20}')
print(f'{release_date:>26}')
print(f'Genres: {", ".join(genres):>20}\n')
Manual lookup of songs
val = 18539
song = genius.search_song('Woo-Hah!! Got you all in check')
raw_lyrics = song.lyrics
lyrics, genres_and_release_date = raw_lyrics.split(John)
raw_genres, release_date = genres_and_release_date.split(flipped_John)
genres = raw_genres.split('_')
if release_date == 'Unknown':
release_date = songInfo.date[val]
else:
release_date = convert_date(release_date)
sd = song.to_dict()
title = sd['title']
artists = process_artist_names(sd['artist_names'])
print(f'Artists: {songInfo.artist[val]:>20}')
print(f'{", ".join(artists):>29}')
print(f'Title: {songInfo.title[val][:20]:>32}')
print(f'{title[:20]:>39}')
print(f'Date: {songInfo.date[val]:>20}')
print(f'{release_date:>26}')
print(f'Genres: {", ".join(genres):>20}\n')
songData.loc[val] = [release_date, artists, lyrics, genres, title]
This way, when collecting data for each song through the modified LyricsGenius API, we would retrieve five attributes: date of release, artists who collaborated on the song, lyrics, genres and the song title. The data looks as follows:
| released | artists | lyrics | genres | title |
|---|---|---|---|---|
| 1957 | [marty robbins] | El Paso Lyrics\nOut in the West Texas town of ... | [country] | El Paso |
| 1960-01-04 | [frankie avalon] | Why Lyrics I'll never let you go\nWhy? Because ... | [pop] | Why |
| 1959 | [johnny preston] | Running Bear LyricsOn the bank of the river\nS... | [pop] | Running Bear |
| 1960-01-04 | [freddy cannon] | Way Down Yonder in New Orleans LyricsWell, way ... | [pop] | Way Down Yonder in New Orleans |
| 1960-01-04 | [guy mitchell] | Heartaches by the Number Lyrics\nHeartaches by... | [country, cover] | Heartaches by the Number |
At this point we had all the raw data, but it was apparent that in spite of our efforts during the data gathering, a lot of cleaning still had to be done.
First of all, unwanted unicodes like \u200b, \u200c and \u200e, which had slipped in when the data was loaded, was removed from artists, genres and the lyrics. Next up, duplicates were removed and songs which were not in english were removed by doing a language detection with the Python module langdetect.
As can be seen in the table above, each of the songs' lyric's begins with the title of the song and 'Lyrics'. This was also removed, as it wasn't part of the actually lyrics, but rather an artifact from gathering the song info using the Genius API.
songData = pd.read_csv('songData.csv', index_col=0)
Create a list of all unique genres
all_genres = set([])
i = 0
for genres in songData.genres:
i += 1
print(i, genres[2:-2])
genres = genres[2:-2].split("', '")
for genre in genres:
all_genres.add(genre)
all_genres
1 country 2 pop 3 pop 4 pop 5 country', 'cover 6 pop 7 pop 8 pop 9 pop 10 pop 11 rock', 'jazz 12 pop 13 rap', 'freestyle', 'covid-19', 'charity 14 pop 15 pop 16 country 17 pop 18 pop 19 r&b', 'soul pop 20 pop 21 pop 22 rock 23 pop 24 rap', 'battle rap 25 rock 26 pop 27 pop 28 rock', 'country', 'rockabilly 29 pop 30 pop 31 pop', 'italy 32 pop 33 pop 34 pop 35 country 36 pop 37 r&b 38 pop 39 rap', 'uk', 'uk rap', 'drill', 'uk drill 40 pop 41 pop 42 pop 43 pop 44 country 45 r&b', 'pop 46 country 47 pop 48 rap', 'freestyle', 'covid-19', 'charity 49 pop 50 pop 51 pop', 'retro', 'holiday', 'christmas 52 pop 53 pop 54 rock', 'country', 'rockabilly 55 pop 56 r&b', 'retro 57 pop', 'cover 58 rock 59 pop 60 r&b', 'soul 61 pop 62 pop 63 pop', 'christmas 64 pop 65 pop 66 country 67 pop 68 pop 69 pop 70 country', 'rock', 'christmas 71 pop 72 country 73 pop 74 rap', 'bay area', 'west coast 75 rock', 'pop', 'singer-songwriter', 'pop-rock', 'folk', 'folk rock 76 pop', 'big band 77 pop 78 country 79 country 80 pop 81 rock', 'pop', 'seventies', 'hip-hop', 'uk 82 pop 83 pop 84 rock', 'pop', 'retro 85 pop 86 r&b', 'rock 87 pop 88 pop 89 country', 'folk 90 pop 91 pop 92 pop', 'art pop', 'piano', 'en español', 'spanish pop', 'spanish urban', 'spanish music 93 pop 94 pop 95 country 96 pop 97 rap 98 rock 99 pop 100 pop 101 pop', 'jazz 102 rock 103 pop 104 pop 105 pop 106 r&b', 'blues 107 pop 108 pop 109 pop 110 rock 111 pop 112 pop 113 pop 114 pop 115 r&b', 'motown', 'soul 116 pop 117 pop 118 country 119 r&b', 'pop', 'sixties', 'jazz', 'soul', 'soul jazz 120 pop 121 rock', 'pop 122 pop 123 r&b 124 rock', 'country', 'rockabilly 125 pop 126 pop 127 pop 128 pop 129 r&b', 'pop', 'blues 130 country 131 rap', 'australia', 'aussie hip-hop 132 pop 133 r&b 134 r&b', 'soul 135 pop 136 pop 137 pop 138 pop 139 pop', 'sixties', 'singer-songwriter 140 pop 141 r&b', 'soul 142 pop 143 pop 144 country', 'rock', 'rockabilly 145 pop 146 pop 147 pop 148 pop 149 pop', 'folk 150 pop 151 pop 152 pop 153 pop 154 rock', 'retro 155 rap 156 pop 157 pop', 'rock 158 pop 159 rap', 'wrestling 160 country', 'folk 161 r&b', 'soul', 'funk 162 country 163 pop 164 pop 165 rap', 'deutschland', 'deutschsprachiger rap 166 pop 167 pop 168 rock 169 country 170 country 171 pop 172 pop 173 rock', 'country', 'rockabilly 174 pop 175 rap 176 pop 177 pop 178 pop 179 pop 180 pop 181 pop 182 pop 183 rock 184 pop 185 rock', 'country', 'rockabilly 186 country 187 pop', 'rap 188 pop 189 pop 190 pop 191 rock 192 r&b 193 rap 194 pop 195 pop 196 pop 197 pop 198 rock 199 pop 200 pop 201 pop 202 country 203 pop 204 pop 205 pop', 'r&b 206 pop 207 country', 'rock 208 pop 209 pop', 'rock', 'sixties', 'retro 210 pop 211 pop 212 rap', 'west coast', 'news 213 pop 214 pop', 'doo-wop 215 rock 216 rock', 'seventies', 'marvel', 'australia', 'hard rock 217 pop 218 country 219 pop 220 pop 221 rap 222 pop 223 country 224 rap 225 pop 226 r&b', 'pop', 'soul', 'sixties', 'soul pop', 'blues 227 pop 228 pop 229 pop', 'jazz 230 r&b', 'rock 231 pop 232 r&b 233 pop 234 pop 235 pop 236 rap 237 rock 238 pop 239 pop 240 pop', 'r&b 241 pop', 'cover 242 pop 243 country 244 pop 245 pop 246 pop 247 pop 248 pop', 'comedy', 'memes', 'mashup', 'anime', 'teen pop 249 pop 250 pop 251 pop 252 pop 253 country 254 pop 255 pop 256 pop 257 pop 258 pop', 'cover 259 rap 260 r&b', 'pop', 'soul pop', 'doo-wop 261 r&b', 'pop', 'blues 262 pop', 'r&b 263 pop', 'country', 'teen pop', 'easy listening', 'ballad', 'sixties', 'baroque pop 264 pop 265 pop 266 rap 267 pop 268 pop 269 country 270 rock', 'pop 271 pop 272 rap', 'battle rap 273 pop', 'cover 274 country 275 pop 276 country 277 pop 278 rap 279 pop 280 pop', 'deutschland 281 rap 282 pop 283 pop 284 rock 285 rap 286 pop', 'volksmusik', 'switzerland 287 pop 288 pop 289 pop 290 pop 291 r&b', 'pop 292 country 293 pop 294 pop 295 pop', 'soundtrack 296 pop 297 rock', 'uk', 'british rock', 'psychedelic rock', 'blues rock 298 pop', 'folk 299 country 300 pop 301 pop 302 pop', 'r&b', 'doo-wop', 'soul', 'soul pop 303 pop 304 pop 305 pop', 'rock 306 pop 307 country 308 pop 309 pop 310 rap 311 country 312 pop 313 rap 314 pop 315 pop 316 rock', 'pop 317 country', 'rock 318 pop 319 pop 320 rap 321 pop 322 pop', 'rock 323 pop 324 pop 325 r&b', 'rap', 'country', 'pop', 'rock 326 pop 327 pop 328 pop', 'doo-wop 329 pop 330 rock 331 country 332 pop 333 pop 334 country', 'rock 335 pop 336 country 337 pop 338 pop', 'rock', 'cover', 'sixties', 'pop-rock 339 pop 340 rap 341 r&b', 'pop', 'patois', 'producer', 'ragga', 'memes', 'dancehall', 'canada 342 pop 343 country 344 rap', 'battle rap 345 pop 346 pop 347 pop 348 pop 349 pop 350 pop 351 rap 352 pop 353 pop 354 pop', 'swing 355 pop 356 pop 357 rock', 'country', 'rockabilly 358 pop 359 pop 360 pop 361 r&b', 'rock 362 pop 363 pop 364 pop 365 pop 366 pop 367 pop 368 pop 369 pop 370 pop 371 country 372 pop 373 pop', 'en español 374 country 375 pop 376 r&b', 'rock', 'seventies', 'cover', 'live', 'blues', 'blues rock', 'psychedelic rock', 'psychedelic 377 pop 378 pop 379 country', 'rock', 'rockabilly 380 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 381 rap', 'posse cut', 'gaming', 'youtube 382 rap 383 r&b 384 pop', 'r&b', 'soul jazz', 'soul', 'soul pop 385 pop 386 pop 387 rap', 'battle rap 388 pop', 'en español 389 rock 390 pop', 'rock 391 pop 392 rock', 'pop 393 rock', 'pop 394 pop 395 r&b', 'pop', 'soul pop', 'doo-wop 396 pop 397 rap', 'beef', 'east coast 398 country 399 pop 400 r&b', 'soul', 'funk 401 pop 402 r&b', 'jazz 403 pop', 'cover 404 pop 405 rock 406 rap', 'france 407 country 408 pop 409 pop', 'r&b', 'girl group', 'doo-wop', 'soul 410 pop 411 r&b', 'pop', 'doo-wop 412 pop 413 country 414 pop 415 country', 'rock', 'rockabilly 416 pop 417 r&b', 'pop', 'sixties', 'soul', 'blues 418 pop 419 pop 420 rock', 'pop 421 r&b', 'rap', 'country', 'pop', 'rock 422 r&b 423 r&b', 'rock 424 pop 425 country 426 rap', 'hong kong', 'trap 427 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 428 pop 429 rap', 'battle rap 430 pop', 'country 431 pop 432 pop 433 rap 434 pop 435 rock', 'dance 436 r&b', 'pop', 'sixties', 'swing', 'swing jazz', 'jazz 437 pop 438 rock 439 pop 440 r&b', 'blues 441 pop', 'folk 442 pop 443 pop 444 pop 445 pop 446 pop 447 pop 448 country 449 rap 450 pop 451 pop 452 pop 453 country 454 pop 455 pop', 'post-rock', 'jazz rock', 'art rock', 'spoken word 456 pop 457 pop 458 country 459 rap 460 pop 461 pop 462 pop', 'electronica 463 pop 464 rock 465 rock 466 pop 467 rock', 'pop 468 pop 469 country', 'rock', "children's music", 'folk 470 r&b 471 rap 472 pop 473 pop 474 pop 475 pop 476 pop 477 pop', 'jazz 478 pop', 'doo-wop', 'blues', 'soul 479 pop 480 pop 481 pop', 'rock', 'sixties 482 pop 483 pop 484 rock 485 country 486 pop', 'r&b', 'blues', 'soul', 'soul pop 487 pop', 'alternative pop 488 r&b 489 country 490 country 491 r&b', 'rock 492 rap 493 r&b', 'rock 494 pop', 'sixties', 'soul', 'girl group', 'doo-wop 495 pop 496 pop 497 pop 498 pop 499 country 500 pop 501 pop 502 rap 503 r&b', 'rock 504 pop 505 pop 506 pop', 'korean', 'genius korea 507 pop 508 rock', 'indie rock 509 pop 510 pop 511 rap', 'trap', 'cypher', 'horrorcore 512 pop 513 country 514 rap', 'freestyle', 'covid-19', 'charity 515 r&b', 'doo-wop 516 pop', 'holiday', 'retro', 'christmas 517 pop 518 rock 519 pop 520 pop 521 r&b', 'soul', 'funk 522 pop 523 pop 524 pop 525 pop 526 pop 527 pop', 'christian', 'cover', 'retro', 'holiday', 'christmas 528 r&b 529 pop 530 rap 531 rap', 'italian rap 532 rock', 'uk', 'seventies', 'hard rock', 'folk rock', 'blues rock 533 rap', 'posse cut', 'france', 'french rap 534 pop', 'cover', 'soundtrack', 'christian', 'christmas 535 country', 'christmas', 'cover 536 pop 537 pop 538 pop 539 pop 540 r&b 541 pop 542 rap 543 pop 544 pop 545 pop 546 pop 547 pop 548 pop 549 pop 550 pop 551 country 552 pop 553 pop 554 pop', 'r&b', 'soul 555 pop', 'doo-wop 556 pop 557 pop 558 pop 559 rap 560 rock', '33 1/3 series 561 pop 562 rock', 'psychedelic rock', 'blues rock 563 pop 564 pop 565 rap', 'unreleased', 'trap 566 pop 567 pop 568 pop 569 pop 570 pop 571 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 572 pop 573 pop 574 pop 575 pop 576 pop 577 r&b', 'pop', 'sixties', 'ballad', 'cover', 'soul pop', 'soul', 'blues 578 r&b 579 rap 580 pop 581 pop 582 rap 583 pop', 'cover', 'jazz 584 pop 585 pop 586 pop 587 r&b 588 r&b 589 pop 590 r&b 591 pop 592 r&b', 'soul', 'piano', 'blues', 'jazz 593 rock', 'jazz', 'blues rock', 'persian rock 594 pop 595 rap', 'nederland 596 pop 597 pop 598 pop', 'rock 599 country 600 pop 601 rock 602 r&b', 'stax', 'soul 603 pop', 'r&b', 'soul', 'motown 604 pop 605 pop 606 pop', 'rock 607 pop 608 pop 609 pop 610 pop 611 country 612 pop 613 pop', 'latin music', 'cuba', 'spanish pop', 'spanish music', 'electro house', 'dance-pop', 'electro-pop', 'en español', 'latin pop 614 r&b', 'pop', 'soul', 'motown 615 pop 616 pop 617 r&b 618 pop 619 pop 620 country 621 rock 622 rap 623 pop 624 pop', 'blues rock', 'blues 625 pop 626 pop 627 pop 628 rap 629 pop 630 pop 631 rock', 'country 632 pop 633 r&b', 'blues 634 rap 635 country 636 pop', 'doo-wop 637 country', 'ballad 638 pop 639 pop 640 r&b', 'rock', 'soul 641 r&b', 'pop', 'sixties', 'soundtrack', 'cover', 'jazz', 'swing jazz', 'soul jazz', 'soul', 'soul pop 642 pop 643 rap 644 country 645 pop 646 r&b 647 r&b', 'rock 648 pop 649 pop 650 pop', 'rock', 'rockabilly', 'pop-rock 651 rap 652 pop 653 pop', 'doo-wop 654 rap 655 pop', 'doo-wop 656 pop', 'french pop', 'chanson', 'variété française', 'france 657 rap 658 rap 659 pop 660 pop 661 pop 662 r&b', 'pop', 'sixties', 'soul', 'blues 663 pop', 'doo-wop 664 pop 665 pop 666 r&b', 'soul', 'funk 667 pop 668 pop 669 rap', 'deutschland', 'deutschsprachiger rap 670 pop 671 pop', 'comedy', 'memes', 'mashup 672 rap 673 pop 674 r&b 675 pop 676 r&b', 'pop 677 pop 678 pop 679 rap 680 pop 681 pop 682 country', 'pop country', 'cover 683 pop 684 r&b', 'pop', 'soul', 'doo-wop', 'motown 685 rock', 'alternative rock', 'pop-rock', 'adult alternative', 'canada 686 rock', 'pop', 'doo-wop', 'soul', 'funk 687 country 688 pop 689 pop 690 rap', 'hip-hop 691 pop 692 rap 693 pop 694 pop 695 pop 696 rock 697 pop 698 rap', 'unreleased', 'svensk rap', 'scandinavia', 'sverige 699 pop 700 rock', 'country', 'rockabilly 701 pop 702 pop 703 rock 704 rap', 'battle rap 705 rap 706 rock', 'en español 707 rock 708 r&b 709 country 710 country 711 r&b', 'rap', 'alternative r&b', 'canada 712 pop 713 pop 714 pop', 'rock', 'girl group', 'doo-wop', 'soul 715 pop 716 country', 'rock 717 rap 718 pop 719 rock 720 country 721 r&b 722 pop 723 pop 724 pop 725 pop 726 pop', 'r&b', 'eighties', 'bay area', 'girl group', 'soul pop 727 pop 728 r&b 729 pop 730 rap 731 pop 732 pop 733 country', 'cover 734 pop 735 pop 736 rock', 'pop 737 pop 738 rock', 'rockabilly 739 pop 740 pop 741 pop 742 pop 743 pop 744 r&b', 'doo-wop 745 pop', 'r&b', 'ballad', 'sixties', 'soundtrack', 'soul', 'soul pop', 'singer-songwriter 746 r&b', 'stax', 'soul 747 pop 748 rap 749 pop 750 rock 751 rock', 'doo-wop 752 pop 753 pop 754 pop 755 pop 756 pop 757 r&b', 'pop', 'soul', 'soul pop', 'doo-wop 758 pop 759 pop 760 r&b 761 pop 762 r&b 763 pop 764 rap', 'polska muzyka', 'polska', 'polski rap 765 rap 766 country 767 pop 768 country 769 pop 770 pop 771 pop 772 pop 773 pop 774 pop 775 country 776 r&b', 'soul 777 pop 778 r&b', 'blues 779 rock', 'pop 780 pop 781 pop', 'doo-wop 782 pop 783 country', 'acoustic 784 r&b', 'rock 785 country 786 country', 'cover 787 rock 788 pop 789 pop 790 rock', 'pop 791 rock', 'folk', 'singer-songwriter', 'seventies', 'folk rock 792 rap 793 pop 794 pop 795 r&b', 'sixties', 'lounge', 'soul jazz', 'jazz', 'soul 796 pop 797 r&b 798 pop 799 r&b', 'rap', 'france', 'french r&b', 'french rap 800 rap 801 rap', 'deutschland', 'deutschsprachiger rap 802 country 803 r&b', 'rock', 'jazz 804 rock', 'retro', 'rockabilly 805 r&b', 'rock 806 pop 807 pop 808 rap 809 country 810 pop 811 r&b', 'doo-wop 812 country 813 pop 814 pop 815 pop 816 pop 817 pop 818 pop 819 pop 820 pop 821 pop 822 pop 823 country 824 rock', 'pop', 'doo-wop 825 pop 826 rap 827 pop 828 pop 829 country 830 pop 831 pop 832 rock', 'progressive rock 833 r&b', 'pop', 'doo-wop', 'soul', 'motown 834 pop 835 pop 836 pop 837 pop', 'motown 838 pop', 'rock', 'girl group', 'doo-wop', 'soul 839 pop 840 country 841 pop 842 pop', 'folk 843 rap 844 rock', 'experimental rock', 'experimental', 'noise rock', 'post-hardcore 845 pop 846 pop', 'rock', 'girl group', 'doo-wop', 'soul 847 country', 'folk 848 rap', 'battle rap 849 rap', 'uk', 'uk rap', 'drill', 'uk drill 850 pop 851 pop', 'r&b', 'soul', 'motown 852 pop 853 pop 854 pop 855 pop 856 pop 857 rock 858 pop 859 pop 860 pop 861 pop 862 r&b', 'latin music 863 r&b 864 pop 865 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 866 pop 867 r&b', 'pop 868 pop', 'rockabilly', 'blue-eyed soul 869 rap', 'battle rap 870 pop 871 pop 872 rap', 'singer-songwriter 873 pop 874 pop', 'rock 875 r&b', 'pop', 'blues 876 pop 877 pop 878 pop 879 pop 880 pop 881 r&b', 'blues 882 pop 883 pop', 'seventies', 'musicals 884 pop 885 rap 886 rock 887 pop 888 pop 889 rock 890 pop 891 rap', 'experimental', 'instrumental hip-hop', 'lo-fi', 'noise', 'death metal 892 rap', 'underground hip-hop', 'indie rap 893 rock', 'rockabilly 894 pop 895 pop', 'cover 896 pop 897 pop 898 pop 899 pop 900 pop', 'r&b', 'doo-wop', 'soul', 'soul pop 901 pop', 'r&b', 'blues 902 pop 903 pop 904 pop 905 rock', 'pop-rock 906 pop 907 pop 908 pop 909 pop 910 rock 911 country 912 pop 913 pop 914 rap 915 pop 916 pop 917 rap', 'hip-hop 918 pop', 'sixties 919 pop 920 r&b', 'pop', 'motown', 'soul pop 921 pop', 'sixties 922 rap 923 pop 924 rock 925 pop 926 pop', 'retro 927 pop', 'psychedelic rock 928 pop 929 rock 930 pop 931 pop 932 pop 933 rap', 'battle rap 934 pop 935 pop 936 pop 937 pop 938 r&b', 'chill', 'experimental hip-hop 939 pop 940 pop 941 pop 942 pop 943 rock', 'pop 944 rock 945 pop 946 rap 947 pop 948 pop 949 pop', 'rock', 'jazz', 'pop-rock', 'doo-wop 950 rock', 'pop 951 pop 952 pop 953 pop', 'poetry', 'contemporary poetry 954 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 955 country 956 rock 957 country 958 pop 959 pop 960 pop 961 pop 962 country 963 pop', 'jazz 964 rock', 'pop 965 pop 966 pop 967 pop', 'alternative r&b 968 pop 969 r&b', 'soul', 'stax 970 pop 971 pop 972 pop 973 pop', 'r&b', 'jazz', 'soul jazz', 'cover', 'soul', 'soul pop 974 pop 975 rap', 'west coast 976 pop 977 pop 978 pop 979 pop', 'cover 980 pop 981 pop 982 rock', 'pop', 'doo-wop 983 pop 984 pop 985 pop 986 country 987 pop 988 pop', 'r&b', 'soul pop 989 pop 990 pop 991 country', 'ballad', 'sixties 992 pop 993 pop 994 r&b', 'pop', 'motown', 'doo-wop', 'soul 995 pop 996 country 997 pop', 'traditional 998 r&b', 'pop country 999 pop 1000 pop 1001 country 1002 country 1003 rock 1004 pop 1005 pop 1006 pop 1007 pop 1008 pop', 'folk 1009 rap', 'battle rap 1010 pop 1011 pop 1012 pop 1013 r&b', 'sixties', 'doo-wop', 'memes 1014 pop 1015 pop 1016 pop 1017 pop 1018 pop 1019 country', 'rock 1020 rock 1021 rock', 'eighties', 'singer-songwriter 1022 rap', 'p-funk', 'funk 1023 pop 1024 country', 'cover 1025 pop 1026 pop 1027 pop 1028 pop', 'cover 1029 pop 1030 rap 1031 pop 1032 pop', 'motown 1033 pop 1034 pop 1035 r&b', 'rock 1036 rock 1037 pop 1038 pop 1039 pop 1040 pop 1041 pop 1042 r&b', 'folk 1043 pop', 'gospel', 'sixties', 'soundtrack', 'ballad 1044 pop 1045 country', 'rock 1046 rock', 'pop 1047 country 1048 r&b 1049 pop', 'doo-wop', 'rockabilly', 'sixties 1050 r&b 1051 pop 1052 pop 1053 country 1054 pop 1055 pop 1056 pop 1057 pop 1058 pop 1059 pop 1060 pop 1061 pop 1062 r&b', 'blues 1063 rap 1064 pop 1065 pop 1066 pop', 'rock', 'girl group', 'doo-wop', 'soul 1067 pop 1068 rap', 'dirty south', 'producer', 'memes 1069 pop 1070 pop 1071 pop 1072 pop 1073 pop 1074 rap', 'battle rap 1075 pop 1076 pop 1077 r&b 1078 rap 1079 pop 1080 pop 1081 country 1082 pop', 'pop-rock', 'doo-wop 1083 r&b 1084 pop 1085 country 1086 rap 1087 pop 1088 pop', 'christmas 1089 rap 1090 pop', 'country 1091 pop 1092 country 1093 pop 1094 pop 1095 pop 1096 pop', 'rock 1097 rock', 'doo-wop 1098 rap 1099 country 1100 pop 1101 pop 1102 r&b 1103 pop 1104 r&b', 'soul', 'motown 1105 pop 1106 pop 1107 pop 1108 rap 1109 rock', 'country', 'rockabilly 1110 pop 1111 country 1112 rock', 'country', 'rockabilly 1113 pop 1114 pop 1115 pop', 'live', 'folk 1116 pop 1117 pop 1118 rap 1119 rap', 'west coast', 'hip-hop', 'east coast 1120 pop 1121 rock', 'country 1122 pop', 'motown 1123 pop 1124 rap 1125 pop 1126 pop', 'r&b', 'singer-songwriter', 'soul pop', 'soul 1127 pop 1128 pop 1129 pop 1130 pop', 'r&b', 'jazz', 'soul jazz', 'soul', 'soul pop 1131 rap', 'battle rap 1132 country', 'rock 1133 rap 1134 pop 1135 pop 1136 pop 1137 pop 1138 pop', 'r&b', 'soul jazz', 'jazz', 'soul', 'soul pop 1139 rock', 'country 1140 pop 1141 rock', 'soul', 'doo-wop 1142 pop 1143 pop 1144 pop 1145 pop', 'girl group', 'brill building 1146 rap 1147 pop 1148 pop 1149 pop 1150 rap 1151 pop 1152 pop 1153 pop 1154 pop 1155 pop 1156 r&b', 'blues', 'soul 1157 pop 1158 pop 1159 pop 1160 pop 1161 r&b', 'rock', 'soul 1162 pop 1163 r&b', 'pop', 'doo-wop 1164 pop 1165 pop 1166 pop 1167 pop 1168 pop 1169 rock 1170 r&b', 'rock', 'jazz', 'soul 1171 pop 1172 rap', 'battle rap 1173 pop 1174 r&b', 'rap 1175 country', 'rock', 'pop 1176 pop 1177 pop 1178 pop 1179 rap 1180 rock 1181 rock 1182 rap', 'trap', 'drill 1183 pop 1184 rock', 'pop 1185 pop 1186 country', 'singer-songwriter 1187 rap', 'battle rap 1188 rap 1189 pop 1190 pop 1191 pop 1192 pop 1193 pop 1194 pop', 'rock', 'r&b', 'girl group', 'doo-wop', 'soul 1195 r&b 1196 pop 1197 pop 1198 r&b', 'pop', 'soul', 'motown 1199 pop', 'piano', 'alternative pop', 'alternative', 'easy listening', 'indie pop', 'indie', 'uk', 'singer-songwriter 1200 pop', 'ballad', 'orchestral 1201 pop 1202 pop 1203 pop 1204 pop 1205 pop 1206 pop 1207 pop 1208 pop 1209 country 1210 pop 1211 rap 1212 country 1213 pop 1214 r&b', 'doo-wop', 'soul 1215 pop 1216 pop 1217 rock 1218 rap 1219 pop 1220 r&b 1221 rap', 'latin music', 'latin urban', 'chile', 'latin trap', 'trap', 'en español 1222 pop 1223 pop 1224 country 1225 pop 1226 rap', 'battle rap 1227 r&b', 'pop', 'soul', 'funk', 'funk-pop', 'soul pop 1228 pop', 'folk 1229 pop 1230 rap 1231 r&b', 'pop', 'doo-wop', 'funk', 'soul 1232 pop 1233 pop 1234 pop 1235 pop 1236 pop 1237 pop 1238 rap 1239 rock 1240 pop', 'cover 1241 pop 1242 pop 1243 pop 1244 rap 1245 pop', 'folk 1246 pop 1247 country', 'pop 1248 r&b', 'soul 1249 country 1250 r&b', 'doo-wop', 'motown 1251 pop 1252 r&b', 'rock 1253 r&b', 'motown 1254 rap 1255 r&b', 'doo-wop 1256 rap', 'trap 1257 country 1258 pop 1259 pop 1260 pop', 'rock 1261 country 1262 pop 1263 rock', 'pop 1264 pop 1265 pop 1266 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 1267 pop 1268 pop 1269 r&b', 'rock', 'cover 1270 pop 1271 rap', 'battle rap 1272 pop 1273 pop 1274 pop 1275 r&b', 'pop', 'soul', 'motown 1276 pop 1277 pop 1278 pop 1279 pop 1280 pop 1281 pop 1282 pop 1283 pop', 'folk', 'live 1284 pop 1285 country', 'rock 1286 pop 1287 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 1288 pop 1289 pop 1290 pop 1291 rock', 'country 1292 pop 1293 pop 1294 rock', 'blues rock', 'blues 1295 r&b', 'rock 1296 pop 1297 pop 1298 pop 1299 pop 1300 rock 1301 pop 1302 pop 1303 r&b 1304 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 1305 r&b', 'pop 1306 rock', 'pop 1307 pop', 'rock 1308 pop 1309 rock 1310 pop 1311 rap 1312 pop 1313 r&b 1314 rap 1315 pop 1316 rap 1317 pop 1318 pop 1319 rock', 'pop 1320 pop 1321 country 1322 pop', 'rock', 'girl group', 'doo-wop', 'ballad', 'soul 1323 pop 1324 r&b 1325 country 1326 pop 1327 country 1328 pop', 'brill building 1329 pop 1330 pop', 'r&b', 'dance 1331 pop 1332 pop 1333 pop 1334 country 1335 r&b', 'pop', 'girl group', 'brill building 1336 rock', 'en español 1337 rap', 'battle rap 1338 rock', 'pop 1339 country 1340 pop 1341 pop 1342 pop 1343 pop 1344 r&b', 'soul 1345 r&b', 'soul 1346 rap', 'nederland 1347 rap', 'drill', 'hip-hop', 'trap', 'cypher 1348 pop 1349 country 1350 r&b', 'pop', 'jazz', 'swing jazz', 'soul jazz', 'soul', 'soul pop 1351 pop 1352 pop 1353 rock', 'history 1354 pop 1355 pop 1356 rock', 'country', 'r&b 1357 pop 1358 pop', 'gaming', 'video game 1359 pop 1360 country 1361 pop 1362 r&b', 'blues 1363 pop 1364 rock', 'folk 1365 rap 1366 rock 1367 pop 1368 pop 1369 pop', 'rock', 'rockabilly 1370 pop 1371 pop 1372 rap 1373 pop 1374 pop', 'cover', 'doo-wop 1375 pop 1376 rock', 'seventies 1377 pop', "children's music 1378 pop 1379 pop 1380 country 1381 pop', 'electro-pop', 'electronic', 'dance', 'scandinavia', 'house', 'dancehall', 'dance-pop', 'scandipop', 'sverige 1382 pop', 'r&b', 'soul', 'motown 1383 rock 1384 pop 1385 r&b', 'rock', 'motown 1386 rock 1387 pop', 'pop-rock', 'surf 1388 pop 1389 pop', 'jazz 1390 pop 1391 r&b', 'motown 1392 pop 1393 rap', 'detroit', 'posse cut', 'remix', 'shadyxv 1394 r&b', 'rock', 'motown 1395 pop 1396 pop 1397 rock', 'doo-wop 1398 pop 1399 pop', 'rock 1400 rock 1401 r&b 1402 pop 1403 pop 1404 rock 1405 rock', 'sixties 1406 pop 1407 pop 1408 country 1409 pop 1410 r&b 1411 country 1412 pop 1413 pop 1414 pop 1415 pop 1416 pop 1417 rap 1418 pop 1419 pop 1420 pop 1421 rock', 'sixties', 'ballad', 'broadway', 'british rock', 'uk', 'cover', 'musicals 1422 pop 1423 pop 1424 rock', 'retro', 'british rock', 'uk', 'cover 1425 pop 1426 r&b', 'soul', 'funk 1427 pop 1428 rock', 'halloween 1429 pop 1430 pop', 'rock', 'girl group', 'doo-wop', 'soul 1431 rock 1432 pop 1433 pop', 'cover 1434 pop 1435 rock 1436 pop 1437 pop 1438 pop 1439 country 1440 country 1441 pop 1442 pop 1443 pop 1444 country', 'rock 1445 r&b', 'sixties', 'soul pop', 'soul', 'motown 1446 pop 1447 rock', 'rockabilly 1448 pop 1449 country 1450 country', 'rock 1451 pop 1452 pop 1453 pop 1454 pop 1455 pop 1456 pop 1457 pop 1458 pop 1459 pop', 'country 1460 pop 1461 pop 1462 r&b 1463 country 1464 r&b', 'swing jazz', 'soul jazz', 'jazz-funk', 'jazz fusion', 'jazz', 'soul', 'funk 1465 pop 1466 pop 1467 pop', 'r&b', 'cover', 'soul', 'soul pop 1468 pop 1469 pop 1470 country 1471 rap 1472 pop 1473 pop 1474 pop 1475 pop', 'cover 1476 pop 1477 pop 1478 pop 1479 pop 1480 pop 1481 pop', 'latin pop', 'latin urban', 'dance-pop', 'dance', 'reggaetón', 'latin music 1482 pop 1483 rock 1484 pop 1485 pop 1486 r&b', 'pop', 'cover', 'soul pop', 'soul 1487 pop 1488 country 1489 country 1490 rap', 'battle rap 1491 pop 1492 pop 1493 pop 1494 pop 1495 rock', 'country 1496 pop 1497 pop', 'sixties 1498 r&b', 'rock', 'pop-rock', 'rockabilly', 'soundtrack 1499 pop 1500 pop 1501 pop 1502 pop', 'pop-rock 1503 pop 1504 rock', 'pop 1505 rock', 'live', 'punk rock 1506 r&b', 'motown 1507 pop 1508 rap 1509 r&b', 'blues 1510 country 1511 rap', 'r&b', 'hip-hop 1512 pop', 'doo-wop 1513 rap', 'gangsta rap', 'new york', 'trap', 'beef', 'hardcore hip-hop', 'east coast 1514 rock 1515 country 1516 pop 1517 pop', 'ballad', 'piano 1518 rap', 'electronic trap', 'electronic', 'cloud rap', 'psychedelic', 'hip-hop', 'trap 1519 pop 1520 pop 1521 pop 1522 r&b', 'pop 1523 pop 1524 rock', 'r&b', 'pop', 'funk', 'soul', 'doo-wop 1525 pop 1526 rap', 'boom bap', 'jazz rap 1527 pop 1528 pop 1529 rock 1530 rap 1531 r&b', 'jazz 1532 pop 1533 pop 1534 r&b', 'rock 1535 rap 1536 rock', 'r&b 1537 country 1538 pop 1539 pop 1540 r&b 1541 pop 1542 pop 1543 pop 1544 pop 1545 pop 1546 country 1547 pop 1548 pop 1549 pop 1550 rock 1551 pop 1552 rap 1553 pop 1554 pop', 'r&b', 'soul', 'motown 1555 pop 1556 pop 1557 r&b', 'pop', 'girl group 1558 pop 1559 pop 1560 r&b 1561 country 1562 pop', 'motown 1563 country', 'folk 1564 pop', 'rock', 'girl group', 'doo-wop', 'soul 1565 pop 1566 pop 1567 rap', 'battle rap 1568 pop 1569 pop 1570 pop 1571 pop 1572 pop 1573 pop 1574 rock 1575 pop 1576 r&b', 'pop', 'motown', 'doo-wop', 'soul 1577 pop 1578 pop 1579 r&b', 'motown 1580 pop 1581 pop', 'cover 1582 r&b', 'swing jazz', 'soul jazz', 'jazz-funk', 'jazz fusion', 'jazz', 'soul', 'funk 1583 rap', 'trap', 'italy', 'italian rap 1584 pop', 'christmas', 'holiday 1585 pop 1586 pop', 'christmas 1587 pop 1588 pop 1589 pop 1590 pop 1591 r&b 1592 pop', 'doo-wop 1593 rock', 'pop', 'folk 1594 pop 1595 pop 1596 r&b', 'pop', 'motown 1597 pop 1598 pop 1599 pop 1600 rock 1601 pop 1602 pop 1603 pop 1604 country 1605 pop 1606 pop', 'r&b', 'motown', 'soul', 'soul pop 1607 pop 1608 pop', 'r&b', 'bossa nova', 'tv', 'uk', 'japan', 'jazz', 'soundtrack', 'screen 1609 pop', 'girl group', 'brill building', 'doo-wop 1610 pop', 'doo-wop 1611 pop 1612 rap', 'spoken word', 'uk rap 1613 pop 1614 pop', 'jazz 1615 pop 1616 rap', 'battle rap 1617 pop 1618 pop', 'italy 1619 pop 1620 rock', 'r&b', 'pop 1621 pop', 'soundtrack 1622 rap 1623 r&b', 'blues 1624 pop', 'rock 1625 pop 1626 pop 1627 pop', 'jazz 1628 pop 1629 pop 1630 r&b', 'soul', 'motown 1631 r&b', 'doo-wop 1632 pop 1633 pop 1634 rock', 'pop', 'folk 1635 pop 1636 pop 1637 pop 1638 pop 1639 pop 1640 r&b 1641 country 1642 country 1643 r&b 1644 pop', 'easy listening 1645 country', 'sixties', 'soundtrack', 'pop country', 'piano 1646 pop', 'northern ireland', 'singer-songwriter 1647 pop 1648 pop 1649 pop 1650 pop', 'folk 1651 pop', 'holiday', 'christmas 1652 rap 1653 pop 1654 pop 1655 pop 1656 rap', 'battle rap 1657 rap', 'posse cut', 'trap 1658 pop 1659 r&b 1660 pop 1661 r&b', 'rock', 'pop 1662 r&b', 'pop', 'soul', 'soul pop 1663 pop 1664 pop 1665 pop 1666 pop 1667 pop 1668 country', 'rock', 'soundtrack 1669 pop 1670 pop 1671 pop 1672 pop 1673 pop 1674 country 1675 pop 1676 pop 1677 pop', 'r&b', 'soul', 'soul pop', 'new jack swing 1678 country', 'rock 1679 pop 1680 pop', 'r&b', 'soul', 'motown 1681 pop 1682 pop 1683 pop', 'sixties', 'doo-wop', 'soul', 'soundtrack', 'girl group 1684 pop 1685 pop 1686 pop', 'girl group', 'bubblegum pop', 'brill building 1687 country', 'pop country 1688 pop 1689 rock', 'pop 1690 pop 1691 pop 1692 pop 1693 rap 1694 pop 1695 rock', 'doo-wop 1696 pop 1697 pop 1698 pop 1699 pop 1700 pop 1701 rock 1702 r&b', 'pop', 'soul', 'doo-wop 1703 pop 1704 r&b', 'soul 1705 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 1706 pop', 'bossa nova 1707 rap 1708 pop 1709 pop', 'country', "children's music", 'folk 1710 pop 1711 pop 1712 pop 1713 pop 1714 pop 1715 pop 1716 pop 1717 pop 1718 rap 1719 rock', 'alternative', 'indie rock', 'alternative rock', 'alternative pop', 'filipino 1720 rock', 'pop', 'singer-songwriter', 'sixties', 'surf 1721 pop 1722 r&b', 'rock', 'pop', 'funk', 'doo-wop', 'soul pop', 'soul 1723 pop 1724 pop 1725 pop', 'rock', 'girl group', 'doo-wop', 'soul 1726 pop', 'girl group', 'brill building', 'ballad 1727 rock', 'progressive metalcore', 'melodic metalcore', 'ambient', 'post-hardcore', 'metalcore 1728 pop 1729 pop 1730 pop 1731 r&b', 'pop', 'motown', 'soul', 'soul pop 1732 pop 1733 rock', 'pop 1734 r&b', 'pop', 'doo-wop', 'soul', 'motown 1735 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 1736 pop 1737 pop', 'sixties 1738 pop 1739 pop 1740 rock', 'doo-wop 1741 r&b', 'south africa', 'setswana 1742 pop 1743 rap 1744 pop', 'country 1745 pop 1746 pop', 'cover 1747 pop', 'folk 1748 pop', 'motown 1749 pop 1750 r&b 1751 rap', 'battle rap 1752 pop 1753 r&b', 'rock 1754 rock 1755 pop 1756 pop 1757 pop 1758 rap 1759 country 1760 r&b', 'soul 1761 pop 1762 r&b', 'blues 1763 rap 1764 pop', 'r&b', 'live', 'ballad', 'soul', 'soul pop 1765 pop 1766 pop 1767 r&b', 'sixties', 'soul', 'blues 1768 country 1769 pop', 'country', 'rock', 'rockabilly 1770 pop 1771 pop 1772 pop 1773 pop 1774 rap', 'battle rap 1775 rap 1776 pop 1777 pop 1778 pop 1779 pop', 'en español 1780 rap', 'china 1781 pop 1782 pop 1783 pop 1784 pop 1785 rap 1786 pop 1787 pop 1788 pop 1789 pop 1790 pop 1791 pop 1792 pop', 'sixties', 'doo-wop', 'girl group', 'brill building 1793 r&b', 'pop', 'soundtrack', 'jazz', 'soul jazz', 'soul pop', 'soul 1794 pop', 'doo-wop 1795 rock 1796 pop 1797 pop', 'japan', 'j-pop', 'ballad 1798 pop 1799 pop 1800 rock', 'funk', 'blues 1801 pop 1802 pop 1803 pop 1804 rock', 'seventies', 'jamaica', 'reggae 1805 rap', 'freestyle', 'covid-19', 'charity 1806 pop 1807 pop 1808 pop 1809 pop 1810 pop 1811 pop 1812 pop 1813 pop', 'cover 1814 pop 1815 r&b', 'rock', 'motown 1816 pop 1817 pop 1818 pop 1819 pop', 'motown 1820 r&b', 'soul 1821 pop 1822 pop 1823 r&b', 'stax', 'soul 1824 rap 1825 pop 1826 rap 1827 pop 1828 pop', 'doo-wop', 'girl group 1829 pop 1830 country', 'alternative country', 'sixties 1831 pop 1832 pop 1833 rap 1834 pop 1835 pop 1836 pop 1837 r&b', 'soul', 'cover 1838 pop', 'mashup 1839 pop', 'easy listening 1840 pop 1841 pop 1842 rock', 'pop 1843 pop 1844 country 1845 country', 'folk 1846 pop 1847 pop 1848 pop 1849 r&b', 'soundtrack 1850 rock 1851 pop 1852 pop 1853 pop 1854 country 1855 pop 1856 rap 1857 rock', 'pop', 'jazz', 'funk', 'doo-wop', 'soul 1858 pop', 'rock', 'doo-wop', 'girl group', 'soul 1859 pop 1860 rap', 'electronic', 'soundtrack 1861 r&b', 'rock 1862 pop 1863 pop 1864 rock 1865 rap 1866 pop 1867 r&b', 'soul 1868 pop 1869 pop 1870 rap', 'hip-hop', 'emo trap', 'emo rap', 'trap 1871 pop 1872 country 1873 rap 1874 pop 1875 pop 1876 pop 1877 rap 1878 country', 'folk 1879 country', 'rock 1880 rock', 'pop', 'folk 1881 pop 1882 pop 1883 r&b', 'pop', 'soul 1884 pop 1885 rap', 'alternative r&b', 'experimental hip-hop', 'electronic', 'trap', 'producer 1886 rock 1887 pop 1888 r&b', 'pop', 'soul 1889 pop 1890 pop 1891 pop', 'sixties', 'doo-wop', 'girl group', 'brill building 1892 rap 1893 pop 1894 pop 1895 pop', 'country', 'jazz 1896 rap', 'conscious hip-hop', 'dirty south 1897 r&b', 'soul 1898 pop', 'motown 1899 pop 1900 pop', 'country 1901 pop', 'screen 1902 pop 1903 pop 1904 pop 1905 pop 1906 pop 1907 pop 1908 pop 1909 pop 1910 pop 1911 r&b', 'soul 1912 pop 1913 pop', 'girl group', 'brill building', 'bubblegum pop 1914 pop 1915 rap', 'persian', 'iranian rap', 'hip-hop', 'iran 1916 pop 1917 rock 1918 pop 1919 pop 1920 pop 1921 r&b', 'cover 1922 r&b', 'pop', 'motown 1923 pop 1924 pop 1925 pop 1926 rock', 'live', 'comedy', 'satire 1927 pop 1928 rock 1929 rap', 'american underground', 'underground hip-hop 1930 pop', 'motown 1931 pop', 'doo-wop', 'surf 1932 pop', 'motown 1933 pop 1934 rap', 'christian rap', 'christian 1935 pop 1936 pop 1937 pop 1938 pop 1939 pop 1940 pop 1941 pop 1942 pop 1943 rap', 'spoken word', 'west coast', 'boom bap', 'underground hip-hop', 'conscious hip-hop 1944 pop 1945 pop 1946 country 1947 pop 1948 pop 1949 pop 1950 r&b', 'pop', 'rock', 'pop-rock 1951 rock', 'pop', 'sixties', 'surf 1952 pop 1953 pop 1954 r&b', 'pop', 'soul', 'motown 1955 pop 1956 pop 1957 rap 1958 pop 1959 pop 1960 rock 1961 pop', 'r&b', 'soul', 'soul pop 1962 r&b', 'pop', 'soul 1963 pop 1964 country 1965 pop 1966 pop 1967 pop 1968 pop 1969 rap', 'underground hip-hop', 'cloud rap', 'piano', 'hip-hop 1970 r&b', 'soul', 'funk 1971 rap 1972 pop', 'soul pop 1973 pop', 'sixties', 'girl group 1974 pop', 'surf 1975 pop 1976 country 1977 rap', 'freestyle', 'covid-19', 'charity 1978 pop 1979 r&b', 'rock 1980 rap 1981 pop 1982 pop 1983 pop 1984 rock', 'funk', 'blues 1985 r&b', 'pop', 'doo-wop', 'funk', 'soul 1986 pop', 'musicals 1987 pop', 'rock', 'girl group', 'doo-wop', 'soul 1988 rock', 'pop 1989 pop 1990 pop 1991 pop 1992 pop 1993 pop', 'doo-wop', 'girl group 1994 rock', 'pop', 'folk 1995 pop 1996 pop', 'baroque pop', 'demo', 'unreleased', 'alternative pop', 'alternative 1997 rap', 'puerto rico', 'latin urban', 'trap', 'latin trap', 'latin music', 'en español 1998 rock', 'pop 1999 rock 2000 pop 2001 pop 2002 pop 2003 pop 2004 pop 2005 r&b 2006 pop 2007 pop 2008 rock', 'history 2009 pop 2010 pop', 'motown 2011 pop', 'country 2012 pop', 'jazz', 'jazz fusion', 'sixties', 'retro 2013 pop 2014 pop', 'r&b', 'soul', 'soul pop 2015 r&b 2016 rap 2017 pop 2018 rap 2019 pop 2020 pop 2021 pop', 'surf rock', 'surf 2022 rap', 'battle rap 2023 r&b', 'pop', 'motown', 'soul', 'soul pop 2024 r&b 2025 pop 2026 pop 2027 pop 2028 r&b', 'stax', 'soul 2029 pop 2030 pop 2031 pop 2032 pop 2033 rap', 'battle rap 2034 country 2035 pop 2036 pop 2037 rap', 'battle rap 2038 country', 'pop 2039 rap', 'atlanta', 'trap 2040 pop 2041 pop 2042 pop', 'rock', 'jazz 2043 pop 2044 country', 'rock 2045 pop 2046 country', 'rock 2047 pop 2048 pop 2049 pop', 'motown 2050 pop 2051 pop 2052 country', 'cover 2053 r&b', 'rock', 'motown 2054 r&b 2055 rock', 'pop', 'pop country 2056 pop 2057 pop 2058 r&b', 'blues 2059 rap 2060 pop 2061 country', 'rock 2062 pop 2063 pop 2064 rap 2065 pop 2066 pop 2067 pop 2068 pop 2069 pop 2070 pop 2071 rock', 'surf rock 2072 pop 2073 pop 2074 rap 2075 pop 2076 pop 2077 rock', 'alternative 2078 pop 2079 pop', 'french pop', 'christian', 'folk', 'france', 'french rock 2080 pop 2081 pop 2082 rock', 'pop', 'doo-wop 2083 rock', 'blues rock 2084 rock', 'folk 2085 country 2086 pop 2087 pop 2088 rap 2089 pop 2090 pop', 'soul 2091 pop 2092 pop', 'motown 2093 pop 2094 pop 2095 pop 2096 r&b 2097 rap 2098 pop 2099 pop', 'doo-wop', 'girl group 2100 rap 2101 pop 2102 country 2103 pop', 'soul 2104 r&b 2105 pop 2106 pop 2107 pop 2108 pop 2109 rap', 'nintendo', 'underground hip-hop', 'meme rap 2110 rap 2111 pop 2112 r&b', 'pop', 'soul', 'motown 2113 pop 2114 pop 2115 r&b', 'stax', 'soul 2116 pop 2117 pop', 'folk 2118 pop 2119 country 2120 r&b', 'pop', 'motown', 'soul 2121 pop', "children's music", 'folk 2122 pop 2123 pop 2124 rock', 'pop 2125 pop 2126 pop 2127 pop 2128 pop', 'r&b', 'soul', 'soul pop 2129 pop 2130 pop 2131 pop', 'soundtrack 2132 pop 2133 pop 2134 rock', 'proto-punk', 'garage rock', 'surf punk', 'surf 2135 r&b 2136 rap 2137 rock', 'pop 2138 pop', 'country', 'cover 2139 r&b 2140 pop 2141 rock 2142 rap 2143 pop 2144 pop 2145 pop', 'girl group', 'brill building', 'doo-wop 2146 pop 2147 pop 2148 r&b 2149 pop 2150 pop 2151 r&b', 'pop', 'girl group', 'brill building', 'sixties', 'feminism', 'blue-eyed soul 2152 rap', 'drill', 'hip-hop', 'trap', 'cypher 2153 pop', 'girl group 2154 country 2155 rock', 'indie rock', 'electronic rock', 'electronic 2156 pop 2157 r&b', 'ballad', 'soul', 'funk 2158 rap 2159 rap 2160 pop 2161 r&b', 'soul', 'blues 2162 pop 2163 pop 2164 pop 2165 rap', 'freestyle', 'covid-19', 'charity 2166 pop', 'jazz', 'lounge 2167 rap 2168 pop 2169 pop', 'rock', 'girl group', 'doo-wop', 'soul 2170 pop 2171 pop 2172 pop 2173 pop', 'folk 2174 pop 2175 rock', 'uk', 'sixties', 'british rock', 'singer-songwriter', 'pop-rock 2176 r&b', 'soul 2177 pop 2178 rap', 'battle rap 2179 pop 2180 pop 2181 pop', 'brill building 2182 country 2183 rap', 'battle rap 2184 pop', 'girl group', 'brill building 2185 rap', 'battle rap 2186 pop 2187 pop 2188 pop', 'rock', 'sixties', 'british rock', 'singer-songwriter', 'uk', 'pop-rock 2189 rock', 'surf 2190 r&b', 'pop', 'blues', 'doo-wop', 'soul', 'soul pop 2191 pop 2192 pop 2193 pop 2194 rap 2195 pop 2196 pop 2197 pop 2198 pop 2199 pop 2200 pop', 'r&b', 'doo-wop', 'funk', 'soul 2201 pop 2202 rock', 'power pop', 'sixties', 'british rock', 'uk', 'singer-songwriter 2203 rap 2204 pop 2205 r&b', 'funk', 'stax', 'soul 2206 pop 2207 rap', 'trap', 'hip-hop', 'dirty south', 'atlanta', 'posse cut', 'west coast', 'canada', 'east coast 2208 pop 2209 rap 2210 country', 'rock 2211 pop 2212 r&b 2213 rock', 'rockabilly', 'british rock', 'singer-songwriter 2214 rock', 'blues 2215 country', 'cover 2216 r&b 2217 pop 2218 r&b', 'pop', 'motown 2219 rap 2220 rock 2221 pop 2222 country 2223 pop 2224 rock', 'pop', 'surf rock', 'pop-rock', 'surf 2225 pop 2226 pop 2227 rock 2228 rap 2229 pop 2230 country', 'rock', 'folk 2231 pop 2232 pop', 'r&b', 'live', 'ballad', 'soul', 'soul pop 2233 rock', 'soundtrack 2234 pop 2235 pop 2236 r&b 2237 pop 2238 pop 2239 pop', 'girl group', 'doo-wop', 'brill building 2240 pop', 'motown 2241 country', 'rock', 'pop', 'cover', 'pop-rock', 'rockabilly 2242 pop 2243 r&b', 'pop', 'motown', 'soul', 'doo-wop', 'soul pop 2244 rock 2245 r&b', 'rock 2246 pop 2247 pop 2248 r&b', 'pop', 'motown', 'psychedelic', 'soul', 'soul pop 2249 pop', 'retro 2250 pop 2251 r&b', 'pop', 'soul', 'motown 2252 rock', 'pop 2253 rock 2254 rap 2255 pop 2256 rock', 'pop', 'folk 2257 rock', 'pop-rock 2258 pop 2259 pop 2260 rock 2261 r&b 2262 pop', 'cover 2263 rap', 'battle rap 2264 r&b', 'blues', 'seventies', 'soul 2265 pop', 'rock', 'sixties', 'british rock', 'cover', 'uk', 'pop-rock 2266 rock', 'pop 2267 r&b', 'rock', 'motown 2268 pop 2269 pop 2270 pop', 'r&b', 'soul', 'soul pop 2271 pop 2272 pop 2273 pop 2274 pop', 'motown 2275 pop 2276 pop', 'rock', 'retro', 'british rock', 'cover', 'uk 2277 pop 2278 rap', 'danmark', 'scandinavia 2279 pop 2280 pop 2281 r&b', 'stax', 'soul 2282 pop', 'rock', 'girl group', 'doo-wop', 'soul 2283 pop 2284 rap 2285 pop 2286 rock', 'pop', 'singer-songwriter', 'sixties', 'british rock', 'soundtrack', 'uk 2287 pop', 'rock', 'ballad', 'retro', 'singer-songwriter', 'british rock', 'uk 2288 pop', 'girl group', 'brill building 2289 pop 2290 pop', 'rock', 'retro', 'british rock', 'uk', 'singer-songwriter 2291 pop 2292 pop 2293 pop 2294 r&b', 'rap 2295 pop 2296 rock', 'blue-eyed soul', 'dub', 'reggae', 'british rock', 'uk 2297 pop 2298 r&b', 'pop', 'soul 2299 rap 2300 pop 2301 rock 2302 r&b', 'pop', 'soul', 'motown 2303 pop 2304 rock', 'pop', 'sixties', 'retro', 'british rock', 'uk', 'pop-rock 2305 pop 2306 pop 2307 rock', 'singer-songwriter', 'uk', 'british rock 2308 pop 2309 pop', 'motown 2310 rap', 'mashup 2311 pop 2312 pop', 'girl group', 'brill building 2313 pop 2314 pop 2315 pop 2316 rap', 'hip-hop', 'hardcore hip-hop', 'horrorcore 2317 pop', 'rock', 'singer-songwriter', 'retro', 'british rock', 'uk 2318 pop', 'rock', 'rockabilly', 'blues rock', 'british rock', 'singer-songwriter 2319 pop', 'motown 2320 pop 2321 rap 2322 rock', 'pop', 'rockabilly 2323 pop 2324 rock', 'rockabilly 2325 pop 2326 rap', 'france', 'french rap 2327 pop 2328 pop 2329 r&b', 'soul 2330 pop 2331 r&b', 'sixties', 'soul', 'blues 2332 pop 2333 pop', 'britpop 2334 pop 2335 pop 2336 pop 2337 rock', 'rap 2338 pop 2339 r&b', 'pop', 'jazz', 'soul jazz', 'soul pop', 'soul 2340 r&b', 'pop', 'sixties', 'soundtrack', 'soul pop', 'soul', 'lounge 2341 pop 2342 rock', 'pop', 'surf 2343 pop 2344 rock 2345 pop 2346 r&b', 'rock', 'motown 2347 r&b', 'pop', 'motown 2348 pop 2349 rock 2350 rock', 'r&b', 'pop', 'funk', 'doo-wop', 'soul 2351 pop 2352 r&b', 'live', 'cover', 'soul', 'uk r&b', 'uk', 'jazz 2353 pop 2354 rock 2355 pop 2356 pop 2357 rock 2358 pop', 'rock', 'retro', 'british rock', 'uk', 'singer-songwriter 2359 pop 2360 pop 2361 pop 2362 country', 'rock 2363 rap', 'battle rap 2364 rock', 'blues 2365 pop 2366 pop 2367 pop 2368 pop 2369 r&b', 'rock', 'motown 2370 pop 2371 pop 2372 pop', 'france 2373 pop 2374 rap', 'jazz rap', 'east coast 2375 pop', 'france 2376 country', 'cover 2377 pop 2378 pop', 'sixties', 'retro', 'cover 2379 rap', 'freestyle', 'covid-19', 'charity 2380 pop 2381 rock 2382 rock', 'pop 2383 pop', 'girl group', 'brill building 2384 rock', 'pop', 'sixties', 'pop-rock', 'surf 2385 pop 2386 pop 2387 pop', 'ska', 'jamaica 2388 pop 2389 pop 2390 rap', 'freestyle', 'covid-19', 'charity 2391 pop 2392 r&b', 'soul', 'stax 2393 r&b', 'soul', 'motown 2394 rock 2395 pop 2396 pop 2397 pop', 'motown 2398 pop 2399 rock', 'blues rock 2400 pop 2401 pop', 'comedy', 'indie 2402 rock', 'pop', 'easy listening', 'adult contemporary', 'ballad', 'pop-rock 2403 rap 2404 rap', 'tunisian rap | راب تونسي', 'arabic rap | راب عربي', 'arabia | عربي 2405 rock 2406 r&b', 'soul 2407 rock 2408 pop', 'latin jazz', 'brasil', 'bossa nova', 'em português 2409 pop 2410 r&b', 'stax', 'soul 2411 pop 2412 pop 2413 rap 2414 r&b', 'rock', 'motown 2415 rock 2416 r&b', 'soul', 'cover 2417 pop 2418 pop 2419 r&b', 'pop', 'motown', 'psychedelic', 'soul', 'soul pop 2420 country', 'folk 2421 rap 2422 rap 2423 pop 2424 rock', 'funk', 'glam rock', 'singer-songwriter', 'eighties 2425 rock 2426 pop', 'blue-eyed soul', 'sixties', 'uk 2427 pop', 'soul 2428 pop 2429 pop 2430 r&b', 'stax', 'soul 2431 pop 2432 rock', 'pop 2433 pop', 'soul 2434 pop', 'rock', 'pop-rock', 'surf rock 2435 r&b', 'pop', 'jazz', 'soul jazz', 'soul', 'soul pop 2436 pop 2437 pop 2438 pop 2439 rock', 'pop', 'r&b', 'doo-wop 2440 r&b', 'pop', 'soul', 'motown 2441 pop 2442 pop 2443 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 2444 r&b 2445 pop 2446 rock', 'uk', 'sixties', 'british rock', 'singer-songwriter', 'pop-rock 2447 pop 2448 pop 2449 pop 2450 pop 2451 pop 2452 r&b', 'motown 2453 country', 'rock 2454 pop', 'rock', 'ballad', 'retro', 'singer-songwriter', 'british rock', 'uk 2455 country 2456 r&b', 'pop', 'sixties', 'motown', 'doo-wop 2457 rap', 'italian rap', 'italy 2458 pop 2459 pop', 'retro', 'sixties 2460 pop 2461 rap', 'chicago rap', 'chill', 'lo-fi', 'cloud rap', 'emo rap', 'trap 2462 pop', 'latin pop', 'en español 2463 pop 2464 pop 2465 rap 2466 pop', 'jazz 2467 pop 2468 rock', 'pop', 'singer-songwriter', 'uk', 'sixties', 'british rock', 'soundtrack 2469 pop 2470 r&b', 'rock', 'blues 2471 pop', 'italian pop', 'chanson', 'italy 2472 pop', 'rock', 'girl group', 'doo-wop', 'soul 2473 pop 2474 pop', 'cover 2475 pop 2476 rock 2477 r&b', 'rock 2478 pop 2479 pop 2480 pop 2481 r&b', 'rap 2482 pop 2483 pop 2484 rock', 'pop', 'singer-songwriter', 'sixties', 'uk', 'british rock', 'soundtrack 2485 rock', 'pop', 'calypso', 'soft rock', 'singer-songwriter', 'sixties', 'chill', 'ballad', 'british rock', 'uk', 'soundtrack 2486 rock 2487 pop 2488 pop 2489 pop', 'doo-wop', 'girl group', 'brill building 2490 pop 2491 rock', 'uk', 'british rock', 'cover 2492 pop 2493 rock', 'pop', 'singer-songwriter', 'sixties', 'uk', 'british rock', 'soundtrack 2494 r&b', 'rock 2495 rock 2496 r&b', 'stax', 'soul 2497 pop', 'cover 2498 r&b', 'pop 2499 rock 2500 pop', 'doo-wop', 'girl group 2501 rock', 'pop', 'singer-songwriter', 'sixties', 'ballad', 'british rock', 'uk', 'soundtrack 2502 rock', 'pop', 'sixties', 'british rock', 'uk', 'soundtrack 2503 pop 2504 pop 2505 pop 2506 pop 2507 pop 2508 pop', 'ska 2509 pop', 'motown 2510 pop 2511 pop 2512 pop 2513 pop 2514 pop 2515 country 2516 pop 2517 rap 2518 pop 2519 pop 2520 r&b', 'soul', 'cover 2521 pop 2522 pop 2523 pop 2524 r&b', 'pop', 'rock', 'soul pop', 'soul', 'piano', 'motown 2525 pop 2526 rock 2527 pop 2528 pop 2529 pop', 'r&b', 'motown', 'soul', 'soul pop 2530 rock 2531 pop 2532 pop 2533 pop 2534 pop 2535 pop 2536 country 2537 pop', 'soul', 'soundtrack', 'cover 2538 pop 2539 rap 2540 rap 2541 pop 2542 r&b', 'rap', 'dirty south', 'dmv', 'trap 2543 pop 2544 r&b', 'pop', 'soul', 'soul pop', 'motown 2545 rap 2546 pop 2547 rap 2548 rock', 'sixties 2549 pop 2550 pop 2551 pop 2552 rock', 'rockabilly 2553 rock', 'pop', 'pop-rock', 'baroque pop 2554 pop 2555 pop 2556 pop 2557 country', 'folk 2558 pop', 'remix', 'lgbtq+ 2559 rock 2560 pop 2561 r&b', 'soul', 'motown 2562 pop 2563 rock 2564 rap', 'deutschsprachiger rap', 'deutschland 2565 rock 2566 pop 2567 rock', 'garage rock', 'british rock 2568 pop 2569 pop 2570 r&b', 'pop', 'musicals', 'broadway 2571 rap 2572 pop 2573 pop 2574 r&b', 'soul', 'motown 2575 r&b', 'rock', 'motown 2576 pop 2577 pop 2578 pop 2579 pop 2580 rock', 'pop 2581 pop', 'r&b', 'soul', 'soul pop 2582 rap 2583 pop 2584 pop 2585 pop 2586 pop 2587 pop 2588 pop 2589 rock', 'uk', 'british rock', 'blues rock 2590 pop 2591 rap', 'pop', 'electronic trap', 'youtube', 'trap', 'pop rap', 'electro-pop', 'indie pop', 'bubblegum pop', 'electronic', 'gaming 2592 r&b', 'rock 2593 pop 2594 rock', 'proto-punk', 'garage rock 2595 pop', 'pop-rock 2596 pop', 'r&b', 'soul pop', 'soul jazz', 'sixties', 'soundtrack', 'jazz 2597 pop 2598 pop 2599 r&b', 'pop', 'sixties', 'girl group', 'soundtrack', 'soul', 'soul pop', 'easy listening', 'motown 2600 rock 2601 pop 2602 pop', 'jazz', 'latin pop 2603 r&b 2604 pop 2605 rap', 'hip-hop', 'boom bap', 'hardcore hip-hop', 'west coast 2606 pop', 'soul 2607 pop 2608 pop 2609 rap', 'g-funk 2610 r&b 2611 r&b', 'soul 2612 rap 2613 rap', 'remix', 'gangsta rap', 'west coast', 'dirty south', 'beef', 'hip-hop', 'hardcore hip-hop 2614 rock 2615 pop 2616 rap 2617 rock 2618 country', 'rock 2619 rap 2620 pop 2621 pop 2622 rock', 'garage rock', 'blues rock', 'pop-rock', 'live', 'uk 2623 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 2624 pop 2625 rock', 'pop', 'pop-rock', 'surf rock 2626 pop 2627 rock', 'british rock', 'uk', 'cover 2628 rock', 'pop', 'pop-rock', 'surf rock 2629 rock', 'sixties', 'british rock', 'psychedelic rock 2630 pop 2631 pop', 'motown 2632 pop 2633 rock', 'pop 2634 r&b', 'pop', 'doo-wop', 'girl group', 'brill building 2635 pop 2636 pop 2637 pop 2638 pop 2639 pop 2640 r&b', 'rock', 'motown 2641 pop 2642 pop 2643 rock 2644 pop 2645 pop 2646 r&b', 'stax', 'soul 2647 pop 2648 pop 2649 pop', 'retro', 'piano', 'orchestral 2650 rock 2651 r&b', 'pop', 'soul 2652 pop', 'rap', 'cloud rap', 'trap', 'conscious hip-hop', 'memes', 'west coast', 'producer 2653 pop', 'rock', 'girl group', 'doo-wop', 'soul 2654 pop 2655 pop 2656 pop 2657 country 2658 pop 2659 country 2660 r&b', 'pop', 'soul', 'doo-wop 2661 rock', 'pop', 'pop-rock', 'baroque pop', 'surf 2662 pop 2663 r&b', 'motown 2664 pop 2665 rap 2666 rap', 'atlanta', 'trap 2667 pop 2668 pop 2669 rap', 'battle rap 2670 pop', 'motown 2671 pop 2672 r&b', 'funk', 'soul 2673 rock 2674 pop 2675 rap 2676 pop 2677 pop 2678 pop 2679 rap', 'battle rap 2680 pop', 'soul 2681 pop 2682 pop 2683 r&b', 'rock', 'soul', 'motown 2684 rock', 'rockabilly 2685 pop', 'rap', 'emo rap', 'emo trap', 'trap', 'west coast 2686 pop 2687 rap', 'uk rap', 'uk', 'grime 2688 r&b', 'pop', 'soul', 'soul pop 2689 pop', 'dance-pop 2690 pop 2691 pop 2692 r&b', 'soul', 'motown 2693 pop 2694 r&b', 'singer-songwriter', 'soul 2695 pop 2696 pop 2697 rock 2698 pop 2699 pop 2700 rap 2701 pop 2702 pop', "children's music", 'disney', 'musicals 2703 pop 2704 country 2705 country 2706 pop 2707 rock 2708 pop 2709 pop', 'rock', 'pop-rock 2710 rock 2711 r&b', 'motown 2712 pop 2713 pop 2714 pop 2715 pop 2716 pop 2717 rock', 'blues rock', 'blues 2718 rap', 'battle rap 2719 rap', 'canada 2720 pop 2721 rock 2722 pop 2723 pop', 'big band 2724 pop 2725 pop', 'sixties', 'blues', 'funk', 'blue-eyed soul 2726 pop 2727 r&b', 'rock 2728 r&b', 'motown 2729 rock 2730 r&b 2731 pop 2732 rap 2733 pop 2734 pop 2735 r&b', 'country 2736 pop 2737 r&b', 'pop', 'soul', 'soul pop', 'motown 2738 pop', 'rock 2739 pop', 'sixties', 'blue-eyed soul', 'easy listening', 'soul pop', 'soul 2740 pop 2741 rap', 'freestyle', 'uk rap', 'uk', 'grime 2742 r&b', 'soul 2743 pop 2744 rap', 'italy 2745 pop 2746 rock', 'proto-punk', 'garage rock 2747 country', 'pop 2748 pop 2749 pop 2750 pop', 'girl group', 'brill building 2751 pop 2752 r&b', 'rock', 'seventies', 'cover', 'live', 'blues', 'blues rock', 'psychedelic rock', 'psychedelic 2753 pop 2754 pop 2755 pop 2756 pop 2757 pop 2758 pop 2759 pop 2760 pop 2761 r&b', 'pop', 'soul 2762 pop 2763 rock', 'pop 2764 pop 2765 rap', 'clean up 2766 r&b 2767 r&b 2768 rock 2769 pop 2770 rock 2771 pop 2772 pop 2773 pop 2774 rock 2775 pop', 'country', 'cover 2776 pop 2777 pop 2778 pop 2779 rock', 'pop', 'sixties', 'pop-rock 2780 pop', 'r&b', 'soundtrack', 'soul pop', 'sixties', 'ballad', 'adult contemporary', 'easy listening', 'soul', 'motown 2781 pop', 'country', 'cover 2782 pop 2783 pop 2784 rap', 'freestyle', 'covid-19', 'charity 2785 rap 2786 rap 2787 pop 2788 pop 2789 pop', 'folk 2790 country 2791 pop 2792 pop 2793 pop 2794 country 2795 pop', 'cover 2796 country 2797 r&b', 'soundtrack', 'sixties', 'soul pop', 'ballad', 'civil rights', 'singer-songwriter', 'gospel', 'soul 2798 pop 2799 pop 2800 rap', 'east coast', 'boom bap', 'hip-hop 2801 pop 2802 pop 2803 pop 2804 r&b', 'soul', 'stax 2805 rock', 'blues', 'funk 2806 rock 2807 pop', 'motown 2808 pop', 'r&b', 'uk', 'wales', 'orchestral', 'theme song', 'soundtrack 2809 r&b', 'pop', 'funk', 'soul', 'soul pop 2810 pop', 'r&b', 'uk', 'wales', 'orchestral', 'theme song', 'soundtrack 2811 rock 2812 pop 2813 pop 2814 r&b', 'soul 2815 pop 2816 pop 2817 pop', 'jazz 2818 pop 2819 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 2820 rock', 'british rock 2821 r&b', 'rock 2822 pop 2823 pop 2824 pop', 'sixties', 'soul', 'motown 2825 r&b', 'gospel', 'christian', 'protest songs', 'soul 2826 rap 2827 pop 2828 pop 2829 rock', 'country 2830 pop 2831 pop 2832 rap', 'trap', 'canada 2833 pop 2834 pop', "children's music 2835 rock', 'sixties', 'pop-rock', 'retro', 'british rock', 'singer-songwriter', 'uk 2836 country', 'pop 2837 pop 2838 r&b', 'pop', 'sixties', 'motown 2839 rock', 'pop', 'uk', 'sixties', 'pop-rock', 'british rock', 'singer-songwriter 2840 rap 2841 pop 2842 pop 2843 r&b', 'stax', 'soul 2844 pop 2845 country', 'rock 2846 pop 2847 pop 2848 pop 2849 pop 2850 pop 2851 rock', 'pop', 'pop-rock 2852 pop 2853 pop 2854 pop 2855 pop 2856 pop 2857 pop 2858 pop 2859 pop 2860 pop 2861 rock', 'pop', 'boy band', 'pop-rock', 'orchestral 2862 pop 2863 pop', 'english translation 2864 pop 2865 pop 2866 pop 2867 pop 2868 r&b', 'rap', 'pop', 'bubblegum pop', 'teen pop', 'singer-songwriter 2869 pop 2870 rock', 'sixties', 'uk', 'garage rock', 'proto-punk 2871 pop 2872 r&b', 'rap', 'west coast', 'electronic', 'electro-funk', 'funk 2873 pop 2874 pop 2875 pop 2876 pop 2877 rap 2878 country 2879 pop 2880 r&b', 'pop', 'soul', 'soul pop 2881 pop 2882 pop 2883 pop 2884 pop 2885 rock 2886 pop 2887 r&b', 'motown', 'soul 2888 pop 2889 r&b', 'pop', 'soul 2890 rap', 'dubstep', 'trap', 'canada 2891 pop 2892 pop 2893 r&b', 'pop 2894 rock 2895 rap', 'east coast', 'hip-hop 2896 r&b', 'motown', 'soul 2897 rock 2898 pop 2899 r&b', 'blues 2900 pop 2901 pop 2902 pop 2903 r&b 2904 rock 2905 rock', 'country', 'garage rock 2906 pop 2907 pop 2908 r&b', 'pop', 'motown', 'soul', 'soul pop 2909 pop 2910 rap', 'soul 2911 rock', 'singer-songwriter', 'sixties', 'folk rock', 'blues rock 2912 pop 2913 pop 2914 r&b', 'pop', 'sixties', 'bubblegum pop 2915 rock 2916 pop 2917 pop 2918 pop 2919 pop', 'girl group', 'brill building 2920 pop', 'broadway', 'musicals 2921 rock 2922 pop 2923 pop 2924 r&b 2925 rap', 'hip-hop', 'conscious hip-hop 2926 pop 2927 country 2928 pop', 'poetry', 'contemporary poetry 2929 pop', 'wales', 'uk', 'sixties 2930 pop 2931 pop 2932 pop 2933 rock', 'pop', 'pop-rock', 'baroque pop 2934 rock 2935 pop 2936 rock 2937 pop 2938 rock', 'country 2939 pop 2940 pop', 'rock', 'sixties', 'soundtrack', 'screen', 'singer-songwriter', 'british rock', 'uk', 'pop-rock 2941 rock', 'pop 2942 rock', 'gospel 2943 pop 2944 pop 2945 pop', 'sixties', 'musicals', 'soundtrack', 'disney 2946 pop', 'retro', 'musicals', 'soundtrack', 'disney 2947 rap', 'freestyle', 'covid-19', 'charity 2948 pop 2949 rap', 'spoken word 2950 pop 2951 pop 2952 pop 2953 pop 2954 r&b', 'motown 2955 rock 2956 rap', 'east coast', 'horrorcore', 'hardcore hip-hop', 'trap metal', 'trap 2957 pop 2958 pop 2959 pop 2960 pop 2961 rap 2962 pop', 'country 2963 rap 2964 pop 2965 pop 2966 country 2967 rock', 'funk', 'blues 2968 pop 2969 pop 2970 rap 2971 rock', 'rockabilly 2972 pop 2973 pop', 'girl group', 'brill building 2974 pop', 'latin urban', 'new wave', 'venezuela 2975 pop 2976 rock', 'uk', 'british rock', 'cover 2977 r&b', 'pop', 'piano', 'sixties', 'soul pop', 'soul', 'motown 2978 pop', 'rock', 'sixties', 'british rock', 'uk', 'pop-rock 2979 rock', 'folk 2980 rock', 'pop-rock', 'cover', 'folk rock 2981 pop 2982 country 2983 rock', 'r&b', 'stax', 'soul 2984 r&b 2985 rock', 'pop', 'folk 2986 rap', 'comedy', 'alternative', 'gangsta rap 2987 country 2988 country', 'pop 2989 pop 2990 pop', 'soundtrack 2991 pop 2992 pop 2993 rock', 'garage rock', 'sixties', 'ireland', 'blues rock 2994 rock', 'blues rock', 'folk rock 2995 rock', 'pop-rock 2996 pop 2997 pop 2998 pop 2999 pop 3000 pop', 'girl group', 'brill building 3001 pop 3002 pop 3003 pop 3004 pop 3005 pop 3006 rap', 'hip-hop', 'underground hip-hop', 'indie rap 3007 pop 3008 pop', 'country', 'cover 3009 country 3010 pop', 'cover 3011 r&b 3012 pop 3013 pop 3014 pop 3015 pop', 'cover', 'sixties', 'uk', 'baroque pop 3016 pop 3017 pop', 'sixties 3018 pop 3019 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 3020 pop 3021 pop 3022 pop 3023 pop 3024 pop 3025 rock', 'garage rock', 'proto-punk', 'blues rock', 'uk', 'sixties', 'hard rock', 'british rock', 'singer-songwriter 3026 r&b 3027 rock 3028 r&b 3029 pop 3030 pop 3031 rap', 'uk rap', 'uk 3032 pop 3033 pop 3034 pop 3035 country', 'rock 3036 pop', 'sixties', 'soundtrack', 'wales', 'uk 3037 rock 3038 pop 3039 rock 3040 r&b', 'pop', 'soul 3041 r&b 3042 rock', 'soul', 'funk 3043 pop', 'sixties', 'girl group', 'brill building', 'bubblegum pop', 'retro 3044 pop 3045 pop 3046 pop 3047 pop 3048 pop', 'easy listening', 'girl group', 'brill building 3049 pop 3050 rap 3051 pop 3052 pop 3053 pop 3054 country 3055 pop 3056 pop 3057 pop 3058 pop 3059 pop 3060 pop 3061 rock 3062 r&b', 'soul', 'funk 3063 pop 3064 pop 3065 rock', 'folk rock', 'pop-rock', 'cover 3066 pop', 'soundtrack', 'ballad', 'jazz 3067 pop 3068 pop', 'folk 3069 rock', 'funk', 'blues 3070 r&b', 'stax', 'soul 3071 rock 3072 pop 3073 pop 3074 r&b', 'rock', 'seventies', 'cover', 'live', 'blues', 'blues rock', 'psychedelic rock', 'psychedelic 3075 r&b', 'rock 3076 pop 3077 pop 3078 r&b', 'soul 3079 pop 3080 pop 3081 pop', 'sixties', 'singer-songwriter', 'adult contemporary', 'ballad', 'pop-rock 3082 pop 3083 rap 3084 country 3085 pop 3086 pop', 'sixties', 'adult contemporary', 'ballad', 'blue-eyed soul', 'soul', 'baroque pop 3087 pop', 'motown 3088 pop', 'r&b', 'sixties', 'motown', 'soundtrack', 'soul', 'soul pop 3089 r&b 3090 rock 3091 pop 3092 pop 3093 rap 3094 rap', 'battle rap 3095 country 3096 pop', 'cover 3097 r&b', 'pop', 'motown', 'soul', 'soul pop 3098 pop', 'rock', 'sixties', 'baroque pop', 'psychedelic', 'art pop', 'pop-rock', 'surf 3099 pop 3100 pop 3101 pop 3102 pop', 'soul', 'jazz 3103 pop', 'rock', 'singer-songwriter', 'sixties', 'folk rock', 'blues rock 3104 pop 3105 r&b 3106 pop 3107 pop 3108 r&b', 'sixties', 'soul 3109 pop 3110 pop 3111 rock 3112 r&b', 'pop', 'motown 3113 pop 3114 rap 3115 rap', 'conscious hip-hop', 'christian rap', 'christian 3116 pop 3117 pop 3118 rap', 'remix 3119 pop', 'rock', 'sixties', 'mental health', 'soundtrack', 'singer-songwriter', 'british rock', 'uk', 'pop-rock 3120 pop 3121 rock 3122 country', 'pop 3123 r&b', 'soul 3124 pop 3125 pop 3126 pop 3127 pop 3128 pop 3129 rap 3130 pop 3131 pop 3132 rock 3133 rock', 'folk rock 3134 pop 3135 rock 3136 pop 3137 pop 3138 pop 3139 pop 3140 r&b 3141 rock', 'folk 3142 rock', 'proto-punk', 'sixties', 'garage rock 3143 pop 3144 pop 3145 rock 3146 rock 3147 rock', 'folk rock 3148 rock', 'soundtrack 3149 pop 3150 pop 3151 pop 3152 pop 3153 rock', 'pop', 'screen', 'soundtrack', 'folk rock 3154 pop 3155 pop 3156 pop 3157 pop 3158 pop 3159 pop', 'soundtrack 3160 country', 'rock 3161 country 3162 pop 3163 country', 'cover 3164 r&b 3165 pop 3166 pop 3167 r&b', 'pop', 'motown', 'soul', 'soul pop 3168 rap', 'freestyle', 'covid-19', 'charity 3169 pop 3170 pop 3171 pop', 'alternative pop 3172 r&b', 'pop', 'stax', 'soul 3173 rap 3174 pop 3175 pop 3176 country 3177 pop 3178 rock', 'pop', 'girl group', 'brill building 3179 pop 3180 pop 3181 r&b', 'pop', 'soul 3182 rap 3183 pop', 'classical music', 'opera', 'italy', 'screen 3184 rock', 'experimental', 'no wave', 'en español 3185 pop 3186 pop 3187 rock', 'folk 3188 r&b', 'blues rock 3189 pop 3190 pop 3191 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 3192 pop', 'folk', 'easy listening 3193 rock', 'pop-rock 3194 pop 3195 pop', 'rock', 'ballad', 'uk', 'sixties', 'baroque pop', 'orchestral', 'british rock', 'singer-songwriter 3196 pop 3197 pop 3198 pop 3199 pop 3200 country', 'rock', 'retro', 'soundtrack', 'british rock', 'uk', 'cover 3201 pop', 'easy listening', 'girl group', 'brill building 3202 country 3203 pop', 'blue-eyed soul 3204 rock 3205 rap 3206 rock 3207 r&b', 'pop', 'soul 3208 pop 3209 pop', 'brill building 3210 pop 3211 pop 3212 pop 3213 r&b', 'pop', 'soul', 'soul pop 3214 pop 3215 pop 3216 pop 3217 pop 3218 rock', 'blues rock', 'sixties', 'british rock', 'uk 3219 pop 3220 r&b', 'rock 3221 pop 3222 pop 3223 pop 3224 pop 3225 rap', 'west coast 3226 r&b', 'blues', 'jazz', 'motown 3227 pop 3228 r&b', 'pop', 'motown', 'soul 3229 pop', 'folk 3230 pop 3231 pop 3232 pop 3233 pop 3234 country 3235 rock 3236 pop 3237 country 3238 pop 3239 pop', 'new wave 3240 pop 3241 pop 3242 r&b', 'pop', 'motown', 'soul', 'soul pop 3243 rock', 'folk rock', 'sixties', 'folk 3244 pop 3245 pop 3246 pop 3247 rap', 'freestyle', 'covid-19', 'charity 3248 rap 3249 rap 3250 pop 3251 pop 3252 pop 3253 rock', 'spoken word', 'experimental rock', 'experimental 3254 rock 3255 country', 'pop 3256 rock 3257 rock', 'ireland', 'blues rock', 'garage rock', 'sixties 3258 pop 3259 pop 3260 pop 3261 country 3262 pop 3263 pop', 'rock', 'british rock', 'raga rock', 'folk rock', 'sixties', 'uk 3264 pop 3265 rap', 'east coast', 'hip-hop 3266 pop 3267 pop 3268 r&b', 'soul 3269 pop 3270 pop 3271 pop 3272 r&b', 'soul 3273 pop', 'pop-rock 3274 r&b', 'sixties', 'soundtrack', 'singer-songwriter', 'soul pop', 'soul', 'funk 3275 rock 3276 country', 'rock 3277 rap', 'battle rap 3278 pop 3279 pop 3280 pop 3281 pop 3282 country 3283 rock', 'country', 'list', 'blues 3284 rock 3285 pop 3286 rap 3287 rock', 'pop', 'singer-songwriter', 'sixties', 'pop-rock', 'soundtrack', 'folk rock', 'folk pop 3288 pop 3289 rap', 'cloud rap', 'hip-hop 3290 pop 3291 pop 3292 pop 3293 rap 3294 pop', 'rock', 'pop-rock', 'baroque pop 3295 pop 3296 pop 3297 country', 'cover 3298 pop 3299 rap 3300 pop 3301 pop', 'scandinavia', 'norge', 'norsk pop', 'folk 3302 pop 3303 pop 3304 pop 3305 pop 3306 pop 3307 pop 3308 pop 3309 pop 3310 pop 3311 rock', 'pop-rock 3312 rock 3313 r&b', 'pop-rock 3314 pop 3315 pop 3316 rap', 'sports 3317 rock 3318 pop 3319 pop 3320 r&b', 'stax', 'soul 3321 pop 3322 pop 3323 pop', 'r&b', 'sixties', 'wales', 'uk', 'theme song', 'orchestral', 'soundtrack 3324 pop 3325 pop 3326 rap 3327 pop', 'r&b', 'blues', 'soul', 'soul pop 3328 pop 3329 pop 3330 pop 3331 pop 3332 rock', 'folk rock 3333 rock', 'sixties', 'pop-rock', 'singer-songwriter 3334 pop 3335 country 3336 pop 3337 pop 3338 r&b', 'pop', 'soul 3339 pop 3340 pop 3341 country', 'pop 3342 pop', 'r&b', 'motown', 'singer-songwriter', 'funk', 'soul', 'soul pop 3343 pop 3344 pop 3345 rock', 'baroque pop', 'sixties', 'uk 3346 pop 3347 pop 3348 r&b', 'pop', 'soul', 'motown 3349 pop 3350 pop 3351 pop 3352 pop 3353 pop 3354 country', 'rock 3355 r&b', 'pop', 'soul', 'funk 3356 rock', 'pop-rock', 'acoustic', 'cover', 'sixties', 'doo-wop', 'surf 3357 r&b', 'pop', 'doo-wop 3358 pop 3359 pop 3360 pop 3361 country', 'rock 3362 pop 3363 rock 3364 rock 3365 rap 3366 country 3367 pop 3368 pop', 'soul', 'funk 3369 pop 3370 rock', 'singer-songwriter', 'sixties', 'folk rock 3371 r&b', 'soul 3372 pop 3373 pop 3374 pop 3375 pop 3376 r&b', 'pop', 'soul', 'soul pop 3377 rap 3378 rap 3379 pop 3380 rock', 'sixties', 'uk 3381 rock 3382 pop 3383 pop 3384 pop', 'sixties', 'pop-rock 3385 pop', 'motown 3386 pop 3387 rap 3388 country', 'folk 3389 rap 3390 country 3391 pop 3392 pop 3393 pop 3394 pop 3395 pop', 'cover 3396 rock 3397 rap 3398 rap 3399 pop 3400 pop 3401 pop 3402 pop 3403 pop', 'south korea', 'k-ballad', 'k-pop (케이팝)', 'boy band', 'korean', 'genius korea 3404 country 3405 pop 3406 pop', 'soul 3407 pop 3408 pop 3409 pop 3410 pop 3411 pop 3412 rock', 'pop 3413 pop 3414 rock 3415 pop', 'remix', 'puerto rico', 'latin urban', 'uk', 'latin music', 'reggaetón', 'en español', 'latin pop 3416 pop 3417 country 3418 pop 3419 r&b 3420 pop 3421 rock', 'soundtrack 3422 pop 3423 pop 3424 country', 'pop 3425 rock', 'cover', 'traditional folk', 'folk 3426 pop 3427 pop', 'pop-rock 3428 pop 3429 country 3430 pop 3431 pop 3432 pop 3433 pop 3434 pop 3435 r&b', 'rock', 'motown 3436 pop 3437 pop 3438 pop 3439 pop 3440 pop 3441 pop', 'r&b', 'soundtrack', 'soul', 'soul pop', 'motown 3442 pop', 'rock', 'iceland', 'folk rock', 'folk', 'alternative rock', 'alternative', 'pop-rock', 'indie rock', 'indie pop', 'indie 3443 rock 3444 pop 3445 pop 3446 rock', 'folk rock 3447 country', 'rock 3448 pop', 'r&b', 'soundtrack', 'sixties', 'motown', 'soul', 'soul pop 3449 pop', 'easy listening', 'brill building 3450 pop 3451 pop 3452 pop 3453 pop 3454 pop 3455 pop 3456 rock', 'sixties', 'pop-rock', 'british rock', 'uk', 'singer-songwriter 3457 r&b', 'pop', 'funk', 'soul', 'funk-pop', 'soul pop 3458 r&b', 'rock', 'stax', 'soul 3459 rock', 'sixties', 'retro 3460 pop 3461 pop 3462 rock', 'pop', 'blue-eyed soul 3463 rap 3464 rock 3465 rock 3466 rap', 'spanish music', 'spanish rap', 'en español 3467 pop 3468 rap', 'east coast 3469 pop', 'sixties', 'retro 3470 pop', 'cover 3471 r&b 3472 pop', 'motown 3473 rock', 'rockabilly', 'retro', 'british rock', 'uk', 'singer-songwriter 3474 country', 'rockabilly 3475 pop 3476 pop', 'france 3477 rock', 'pop 3478 rock 3479 pop', 'cover 3480 pop 3481 rock', 'psychedelic rock 3482 pop 3483 country', 'rock', 'cover', 'soundtrack 3484 pop 3485 pop 3486 country', 'rock 3487 pop 3488 pop 3489 pop 3490 pop 3491 r&b', 'soul 3492 pop 3493 pop 3494 pop 3495 rap 3496 pop 3497 pop', 'girl group', 'brill building 3498 pop 3499 rock 3500 rock 3501 pop 3502 pop 3503 r&b', 'rock 3504 rap', 'r&b', 'funk', 'alternative', 'alternative r&b', 'soul 3505 pop 3506 rock 3507 r&b', 'soul 3508 rock', 'pop', 'baroque pop', 'sea shanty 3509 pop 3510 rock 3511 pop 3512 pop 3513 pop 3514 pop', 'r&b', 'motown', 'singer-songwriter', 'funk', 'soul', 'soul pop 3515 pop 3516 r&b 3517 pop 3518 country 3519 pop 3520 pop', 'rock', 'pop-rock 3521 pop 3522 pop 3523 pop 3524 rock', 'psychedelic rock', 'folk rock 3525 pop 3526 pop 3527 r&b', 'soul', 'funk 3528 pop 3529 r&b', 'sixties', 'soundtrack', 'soul', 'soul pop', 'motown 3530 rock', 'r&b', 'pop', 'sixties', 'soul 3531 pop', 'rock', 'sixties', 'folk rock', 'blues rock', 'psychedelic rock 3532 r&b', 'pop', 'soul', 'soul pop', 'motown 3533 rock 3534 country 3535 pop 3536 pop 3537 pop 3538 pop 3539 rap 3540 pop 3541 pop 3542 pop', 'motown 3543 rock', 'pop 3544 pop', 'folk pop', 'easy listening', 'adult contemporary', 'ballad', 'acoustic', 'adult alternative', 'singer-songwriter', 'uk 3545 pop 3546 pop 3547 pop', 'motown 3548 r&b', 'blues 3549 pop 3550 rock 3551 rock 3552 pop 3553 r&b', 'pop', 'soul', 'motown 3554 r&b 3555 pop 3556 pop 3557 pop 3558 rock 3559 pop 3560 pop 3561 country 3562 pop 3563 r&b 3564 rock 3565 r&b 3566 rock', 'folk rock 3567 rock', 'pop', 'folk rock 3568 pop 3569 pop 3570 pop 3571 pop', 'doo-wop', 'girl group 3572 rock', 'garage rock 3573 pop 3574 pop 3575 pop 3576 pop 3577 pop 3578 rock', 'raga rock', 'british rock', 'uk', 'sixties', 'psychedelic', 'soundtrack', 'hard rock', 'psychedelic rock 3579 pop 3580 country 3581 r&b', 'pop', 'doo-wop', 'soul 3582 pop 3583 pop 3584 country 3585 pop 3586 rap 3587 pop 3588 rock 3589 rock', 'uk', 'british rock', 'blues rock 3590 rock 3591 rock 3592 pop 3593 pop 3594 rock 3595 pop', 'pop-rock', 'sixties', 'folk rock', 'folk 3596 r&b', 'soul 3597 pop 3598 pop', 'r&b 3599 pop 3600 r&b', 'rock', 'motown 3601 pop 3602 pop 3603 pop', 'r&b', 'sixties', 'motown', 'soul', 'soul pop 3604 pop 3605 pop 3606 r&b', 'sixties', 'soul', 'motown 3607 r&b', 'soul 3608 rap 3609 r&b', 'soul 3610 pop 3611 pop', 'motown 3612 pop 3613 pop', 'folk rock', 'folk 3614 pop', 'motown 3615 country', 'pop country 3616 pop 3617 country 3618 pop', 'motown 3619 pop 3620 pop 3621 rock 3622 pop 3623 rock 3624 pop 3625 pop 3626 pop 3627 r&b', 'stax', 'soul 3628 pop 3629 pop 3630 pop 3631 pop 3632 r&b', 'soul 3633 pop', 'rock', 'uk', 'sixties', 'power pop', 'pop-rock', 'singer-songwriter 3634 rock', 'psychedelic rock 3635 pop 3636 pop', 'motown 3637 pop 3638 pop 3639 rock', 'pop 3640 rock 3641 pop 3642 pop 3643 pop 3644 pop 3645 rock 3646 r&b', 'pop', 'soul', 'motown 3647 pop 3648 pop 3649 pop 3650 pop 3651 pop 3652 rap 3653 rock', 'uk', 'sixties 3654 rock 3655 pop', 'country', 'pop country 3656 pop 3657 pop 3658 pop', 'rock', 'soul pop', 'soul', 'soul jazz', 'sixties 3659 country 3660 rock 3661 pop 3662 pop 3663 country', 'ballad 3664 pop', 'uk', 'sixties', 'pop-rock', 'folk rock 3665 pop 3666 rap 3667 pop 3668 rock', 'folk rock', 'blues rock', 'psychedelic rock 3669 rap 3670 pop 3671 rap 3672 country', 'rock 3673 rock', 'soul 3674 pop', 'r&b', 'motown', 'live', 'funk', 'jazz-funk', 'jazz', 'soul jazz', 'soul', 'soul pop 3675 rock', 'british rock 3676 rock', 'pop 3677 pop 3678 pop 3679 pop 3680 rap', 'west coast 3681 pop 3682 pop 3683 rock', 'psychedelic', 'pop-rock 3684 pop 3685 rock', 'psychedelic rock', 'folk rock 3686 r&b', 'pop', 'soul', 'soul pop', 'motown 3687 country 3688 pop 3689 pop 3690 rap 3691 rap 3692 pop 3693 pop 3694 pop', 'experimental', 'comedy 3695 pop', 'r&b', 'rock', 'cover', 'soul', 'soul pop', 'motown 3696 pop 3697 country', 'cover 3698 r&b', 'pop', 'soul 3699 rock', 'sixties', 'british rock', 'uk', 'ballad', 'folk rock', 'baroque pop 3700 pop 3701 rock 3702 pop 3703 pop 3704 rock', 'raga rock', 'uk', 'british rock', 'folk rock', 'pop-rock 3705 pop 3706 pop 3707 pop', 'spoken word', 'en español 3708 pop 3709 rock', 'pop-rock 3710 pop 3711 r&b', 'soul 3712 r&b', 'pop', 'funk', 'soul', 'funk-pop', 'soul pop 3713 pop 3714 pop 3715 rock', 'art rock', 'avant-pop', 'sixties', 'pop-rock 3716 rock 3717 pop', 'rock', 'psychedelic rock 3718 rap', 'battle rap 3719 rock 3720 rap 3721 pop', 'motown 3722 pop 3723 r&b 3724 rap', 'battle rap 3725 pop 3726 pop 3727 rock 3728 pop 3729 pop 3730 pop 3731 pop 3732 rock 3733 pop 3734 rock 3735 pop 3736 pop 3737 rap', 'east coast', 'hardcore hip-hop', 'hip-hop 3738 r&b', 'pop', 'sixties', 'retro', 'soul pop', 'soul', 'doo-wop', 'motown 3739 pop 3740 rock', 'pop', 'avant garde', 'baroque pop', 'avant-pop', 'sixties', 'pop-rock 3741 pop 3742 country 3743 pop 3744 pop 3745 pop 3746 pop 3747 pop 3748 rock 3749 pop', 'rock', 'folk', 'uk', 'folk rock', 'british rock', 'pop-rock', "children's music", 'psychedelic 3750 r&b', 'pop', 'soul', 'soul pop', 'motown 3751 pop', 'rock', 'r&b', 'adult contemporary', 'ballad', 'soul pop', 'motown', 'soul 3752 rock 3753 r&b', 'soul', 'stax', 'soundtrack 3754 r&b', 'rock', 'motown 3755 pop 3756 pop 3757 rap', 'freestyle', 'covid-19', 'charity 3758 rock 3759 pop', 'dubstep 3760 pop', 'art rock', 'folk', 'uk', 'orchestral', 'baroque pop 3761 pop', 'sixties', 'adult contemporary', 'baroque pop', 'ballad', 'pop-rock 3762 pop 3763 rap 3764 country 3765 pop 3766 pop 3767 r&b', 'rock 3768 pop', 'easy listening', 'jazz 3769 rock 3770 pop', 'cover 3771 pop', 'rock', 'r&b', 'soul pop', 'soul', 'motown 3772 rock', 'retro', 'swing 3773 rap 3774 pop', 'english translation 3775 pop 3776 rap 3777 pop', 'theme song', 'japanese', 'japan', 'j-pop', 'anime 3778 pop 3779 country 3780 pop 3781 rock', 'blues rock', 'electronica', 'electronic rock', 'nineties', 'uk', 'british rock', 'trip-hop', 'acid jazz', 'alternative rock 3782 rap 3783 country', 'pop', 'rock', 'sixties 3784 pop', 'sixties', 'baroque pop 3785 rock', 'acid', 'sixties', 'psychedelic', 'psychedelic rock', 'proto-punk', 'garage rock 3786 pop', 'sixties', 'brill building 3787 rock', 'folk rock', 'blues rock', 'psychedelic rock 3788 r&b', 'pop', 'soul', 'soul pop 3789 pop 3790 pop 3791 pop 3792 pop 3793 pop 3794 pop 3795 r&b', 'stax', 'soul 3796 pop 3797 r&b', 'soul 3798 pop 3799 pop 3800 pop 3801 country 3802 pop 3803 pop 3804 pop 3805 pop 3806 pop 3807 pop 3808 rap', 'battle rap 3809 rock', 'soul 3810 pop', 'folk 3811 pop', 'em português 3812 pop 3813 rock', 'psychedelic rock', 'folk rock 3814 pop 3815 pop 3816 pop', 'motown 3817 pop 3818 pop 3819 pop 3820 pop 3821 pop 3822 r&b', 'soul', 'stax 3823 pop 3824 pop 3825 rock', 'blues rock 3826 pop 3827 rap', 'battle rap 3828 r&b', 'soul 3829 pop 3830 pop 3831 pop 3832 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 3833 rap 3834 rock 3835 pop 3836 country', 'rock 3837 pop 3838 country', 'rock 3839 pop 3840 country', 'pop 3841 pop 3842 pop 3843 r&b', 'soul 3844 r&b', 'funk', 'soul 3845 country 3846 pop 3847 pop 3848 pop', 'cover 3849 pop 3850 pop 3851 rock 3852 country 3853 pop 3854 pop 3855 pop 3856 pop 3857 pop', 'folk 3858 pop 3859 pop 3860 rock', 'sixties', 'psychedelic 3861 pop', 'motown 3862 rap', 'battle rap 3863 r&b', 'blues rock 3864 pop 3865 pop 3866 r&b', 'disco', 'funk', 'soul 3867 pop 3868 pop 3869 r&b', 'latin urban', 'en español', 'latin trap', 'méxico', 'latin music 3870 rock', 'garage rock 3871 rap', 'battle rap 3872 pop 3873 pop 3874 pop', 'rock 3875 r&b', 'pop', 'motown 3876 pop', 'motown 3877 rock 3878 r&b', 'soul 3879 pop 3880 r&b', 'pop', 'soul 3881 r&b', 'singer-songwriter', 'soul', 'soul pop 3882 pop 3883 pop 3884 pop 3885 rock', 'folk', 'folk rock 3886 rap 3887 r&b', 'pop', 'soul', 'motown 3888 country 3889 pop 3890 pop', 'rock 3891 pop 3892 pop', 'bossa nova 3893 rock', 'psychedelic rock 3894 rock 3895 rap 3896 rap 3897 pop', 'r&b', 'motown', 'soul', 'soul pop 3898 pop 3899 rap', 'gangsta rap 3900 pop 3901 rap', 'greece 3902 pop 3903 rock 3904 pop 3905 pop', 'cover', 'traditional', 'retro', 'jazz 3906 rock', 'motown 3907 pop 3908 pop', 'easy listening', 'sixties 3909 pop 3910 pop', 'motown 3911 pop 3912 pop 3913 pop 3914 rap', 'freestyle', 'covid-19', 'charity 3915 pop', 'r&b', 'sixties', 'funk', 'soul pop', 'soul 3916 pop 3917 pop 3918 pop 3919 rock 3920 pop 3921 pop 3922 pop 3923 pop', 'soul 3924 pop 3925 pop 3926 pop 3927 rock', 'psychedelic rock 3928 pop 3929 r&b', 'soul', 'funk 3930 pop', 'americana', 'folk 3931 pop 3932 pop 3933 r&b', 'pop', 'soul', 'motown 3934 r&b', 'stax', 'soul 3935 pop 3936 rock', 'pop-rock', 'soundtrack 3937 rock', 'reggae 3938 pop 3939 pop 3940 pop 3941 pop 3942 pop', 'rock', 'sixties', 'cover', 'pop-rock 3943 country 3944 pop 3945 pop 3946 pop 3947 rock 3948 pop 3949 pop 3950 rap 3951 pop', 'psychedelic 3952 pop 3953 pop 3954 rock 3955 rock', 'motown 3956 rock', 'garage rock', 'sixties', 'proto-punk 3957 r&b 3958 country', 'pop country 3959 pop 3960 pop 3961 rap 3962 country', 'pop 3963 pop 3964 pop', 'rock', 'folk rock 3965 pop 3966 pop 3967 pop 3968 pop 3969 pop 3970 country', 'spoken word', 'pop country', 'sixties', 'wales', 'uk 3971 pop 3972 pop 3973 pop 3974 pop 3975 pop 3976 pop', 'psychedelic soul', 'soul jazz', 'sixties', 'jazz', 'latin jazz', 'bossa nova 3977 pop 3978 r&b 3979 rock 3980 pop 3981 rap', 'electronic', 'uk rap', 'uk', 'grime 3982 rap', 'freestyle', 'trap 3983 pop 3984 pop 3985 pop 3986 r&b', 'pop 3987 rock 3988 r&b 3989 pop 3990 r&b', 'rock', 'sixties', 'blue-eyed soul 3991 rock', 'uk', 'sixties 3992 r&b', 'funk', 'soul 3993 pop', 'soul jazz 3994 pop 3995 r&b', 'rap', 'atlanta', 'trap 3996 r&b', 'rock', 'motown 3997 pop 3998 pop 3999 pop', 'baroque pop 4000 rock', 'sixties', 'uk', 'british rock', 'pop-rock 4001 pop 4002 pop 4003 pop', 'sixties 4004 pop 4005 pop 4006 rap 4007 pop 4008 pop 4009 pop 4010 rap 4011 pop 4012 pop 4013 pop 4014 pop 4015 pop', 'rock', 'psychedelic soul', 'sixties', 'british rock', 'uk', 'baroque pop 4016 pop 4017 pop', 'rock', 'piano', 'british rock', 'pop-rock', 'baroque pop', 'psychedelic rock', 'psychedelic 4018 pop', 'rock 4019 pop 4020 pop 4021 pop 4022 r&b', 'motown 4023 pop 4024 pop 4025 r&b', 'pop', 'soul', 'motown 4026 rock 4027 pop 4028 pop 4029 rock 4030 rap 4031 pop 4032 pop 4033 pop', 'cover 4034 pop 4035 pop 4036 pop 4037 r&b', 'soul 4038 rock', 'black metal 4039 pop 4040 rock', 'pop 4041 pop 4042 pop 4043 pop 4044 pop 4045 r&b', 'pop', 'cover', 'ballad', 'adult contemporary', 'easy listening', 'orchestral', 'soul', 'soul pop 4046 pop 4047 pop 4048 pop 4049 rock', 'psychedelic rock', 'folk rock 4050 pop', 'motown 4051 pop', 'rock', 'sixties 4052 rock', 'pop-rock', 'power pop 4053 pop 4054 pop 4055 pop 4056 r&b 4057 pop 4058 pop 4059 pop 4060 pop 4061 rap', 'florida rap 4062 rock 4063 pop 4064 rock 4065 r&b', 'pop', 'soul', 'motown 4066 rap', 'freestyle', 'covid-19', 'charity 4067 pop 4068 pop 4069 pop', 'retro', 'folk 4070 r&b', 'soul', 'stax 4071 pop 4072 pop', 'soul 4073 rock', 'sixties', 'baroque pop', 'chamber music', 'british rock', 'uk', 'singer-songwriter', 'psychedelic', 'psychedelic rock 4074 rock', 'baroque pop', 'british rock', 'singer-songwriter 4075 r&b 4076 pop', 'motown 4077 pop 4078 r&b', 'soul', 'funk 4079 pop 4080 pop', 'r&b', 'soul', 'soul pop 4081 pop 4082 rock', 'adult contemporary', 'adult alternative', 'alternative rock', 'funk rock', 'pop-rock', 'cover', 'italy 4083 rap', 'east coast', 'producer 4084 r&b', 'pop', 'cover', 'soul', 'soul pop 4085 pop 4086 pop', 'motown 4087 pop 4088 pop 4089 r&b 4090 r&b', 'soul 4091 pop', 'rock 4092 rock', 'r&b', 'motown 4093 pop 4094 country 4095 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 4096 pop 4097 rock', 'psychedelic rock', 'garage rock 4098 pop 4099 pop 4100 pop 4101 pop 4102 pop', 'sixties', 'traditional', 'jazz', 'bolero', 'cover 4103 r&b', 'pop', 'soul', 'motown 4104 pop 4105 pop 4106 country 4107 rock', 'folk', 'folk rock 4108 pop 4109 rap 4110 pop 4111 pop 4112 pop 4113 pop 4114 rock 4115 rock 4116 rock', 'pop', 'sixties', 'power pop', 'pop-rock 4117 pop 4118 pop 4119 rock 4120 rock', 'pop 4121 pop 4122 country 4123 pop', 'jazz 4124 pop 4125 r&b 4126 pop 4127 pop 4128 rap 4129 rock 4130 r&b 4131 pop 4132 pop 4133 rock', 'pop', 'uk', 'pop-rock 4134 rock', 'folk rock 4135 rock', 'sixties', 'psychedelic rock 4136 pop 4137 pop 4138 rap 4139 pop', 'jazz', 'soul jazz', 'bossa nova', 'sixties', 'latin jazz 4140 pop 4141 pop 4142 pop', 'motown 4143 pop', 'rock', 'retro', 'baroque pop', 'easy listening', 'singer-songwriter', 'adult contemporary', 'ballad', 'pop-rock 4144 pop 4145 pop 4146 pop 4147 r&b', 'soul', 'stax 4148 country 4149 pop 4150 pop 4151 pop 4152 rap', 'freestyle', 'covid-19', 'charity 4153 rock 4154 pop 4155 pop 4156 pop 4157 pop 4158 pop', 'r&b', 'funk', 'soul', 'soul pop 4159 pop 4160 pop 4161 pop', 'motown 4162 pop 4163 pop 4164 rap 4165 r&b', 'soul 4166 pop 4167 pop 4168 country 4169 r&b', 'pop', 'soul 4170 rock 4171 pop 4172 pop 4173 rock', 'pop-rock', 'uk', 'british rock', 'psychedelic rock 4174 r&b', 'pop', 'soul 4175 pop', 'motown 4176 pop 4177 rap 4178 pop 4179 pop 4180 pop 4181 pop', 'r&b', 'singer-songwriter', 'funk', 'motown', 'soul', 'soul pop 4182 r&b', 'sixties', 'soul 4183 rock', 'pop-rock', 'sixties', 'proto-punk', 'garage rock 4184 pop 4185 country', 'pop 4186 r&b', 'pop', 'motown', 'soul', 'soul pop 4187 pop', 'rock', 'folk 4188 rap 4189 rock 4190 pop 4191 r&b 4192 pop 4193 pop 4194 pop 4195 pop 4196 rap 4197 pop 4198 r&b', 'soul', 'stax 4199 pop 4200 country 4201 rap 4202 pop 4203 r&b 4204 pop', 'r&b', 'funk', 'soul', 'soul pop 4205 rap', 'freestyle', 'covid-19', 'charity 4206 pop', 'motown 4207 pop', 'motown 4208 pop 4209 pop 4210 rap', 'battle rap 4211 pop', 'r&b', 'sixties', 'soul', 'soul pop', 'motown 4212 pop 4213 pop 4214 pop', 'rock 4215 rock 4216 rock 4217 pop 4218 pop 4219 pop 4220 pop 4221 pop 4222 pop', 'r&b', 'ballad', 'sixties', 'easy listening 4223 r&b', 'soul', 'stax 4224 r&b', 'rock 4225 country', 'rock 4226 pop', 'motown 4227 rap 4228 pop 4229 rock', 'folk rock', 'blues rock 4230 pop 4231 pop', 'soul 4232 pop 4233 r&b', 'stax', 'soul 4234 rock', 'pop-rock', 'sixties', 'retro 4235 pop 4236 pop 4237 pop 4238 pop 4239 r&b', 'soul 4240 pop 4241 pop 4242 rock', 'pop 4243 pop 4244 country', 'rock 4245 rock', 'psychedelic', 'folk 4246 pop 4247 pop 4248 pop 4249 pop 4250 pop 4251 pop 4252 rap 4253 pop 4254 rock 4255 pop 4256 rock 4257 rock', 'sixties', 'progressive rock', 'psychedelic rock 4258 rock', 'france', 'french rock 4259 pop 4260 pop', 'r&b', 'singer-songwriter', 'motown', 'funk', 'soul', 'soul pop 4261 pop 4262 pop 4263 pop 4264 rock 4265 country', 'pop country 4266 pop 4267 pop', 'soul 4268 pop 4269 rock 4270 pop 4271 pop 4272 r&b', 'pop', 'motown', 'soul 4273 pop 4274 pop 4275 rap', 'battle rap 4276 pop 4277 pop 4278 pop 4279 r&b', 'soul', 'blues 4280 rap', 'memphis', 'atlanta', 'trap 4281 rock 4282 r&b', 'soul 4283 pop 4284 pop 4285 rock', 'sixties', 'psychedelic', 'bolero', 'psychedelic rock 4286 pop 4287 country', 'rock', 'pop 4288 rock', 'sixties', 'ballad', 'psychedelic rock', 'progressive rock 4289 pop 4290 pop', 'psychedelic', 'theme song', 'orchestral', 'sixties', 'soundtrack 4291 pop 4292 pop 4293 pop 4294 pop 4295 pop 4296 pop 4297 pop 4298 r&b 4299 pop 4300 rap 4301 pop 4302 rap', 'dirty south', 'hip-hop 4303 pop 4304 pop 4305 pop 4306 pop 4307 rock', 'singer-songwriter', 'sixties', 'uk', 'hard rock', 'proto-punk', 'power pop', 'british rock 4308 pop 4309 r&b', 'motown 4310 pop 4311 pop', 'stax 4312 rock 4313 country', 'pop 4314 pop 4315 rap', 'rock', 'alternative rock 4316 rap 4317 pop 4318 pop 4319 pop 4320 pop 4321 country 4322 pop 4323 country', 'sixties', 'folk 4324 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 4325 pop', 'sixties', 'soul', 'blue-eyed soul', 'soul pop 4326 rock', 'folk rock 4327 pop', 'rock', 'orchestral', 'sixties', 'piano', 'singer-songwriter 4328 pop 4329 rock 4330 pop', 'r&b', 'funk', 'soul', 'funk-pop', 'soul pop 4331 pop 4332 pop 4333 pop 4334 rock', 'pop-rock', 'northern ireland', 'uk', 'singer-songwriter', 'sixties 4335 pop 4336 rock', 'pop-rock', 'psychedelic rock', 'sixties 4337 r&b', 'soul 4338 rock', 'uk', 'singer-songwriter', 'pop-rock', 'baroque pop', 'psychedelic 4339 pop 4340 pop', 'motown 4341 pop 4342 pop', 'r&b', 'soul', 'motown 4343 pop 4344 pop 4345 pop 4346 rap', 'battle rap 4347 country 4348 rock', 'sixties', 'retro', 'psychedelic', 'british rock', 'uk', 'singer-songwriter 4349 r&b', 'pop', 'soul', 'motown 4350 r&b', 'soul', 'stax 4351 pop 4352 pop 4353 rock', 'folk rock', 'folk 4354 pop 4355 pop', 'motown 4356 pop 4357 pop', 'folk punk', 'lgbtq+', 'british folk', 'folk 4358 pop 4359 pop 4360 country', 'rock 4361 rock', 'uk', 'british rock', 'psychedelic rock 4362 rock 4363 pop 4364 pop 4365 pop 4366 r&b', 'stax', 'soul 4367 r&b', 'soul 4368 pop 4369 rock', 'alternative rock', 'hard rock 4370 pop 4371 pop 4372 rap 4373 r&b', 'pop', 'ballad', 'adult contemporary', 'soul pop', 'soul 4374 pop 4375 rock 4376 pop 4377 rock', 'sixties 4378 pop 4379 rock', 'r&b', 'pop-rock', 'soul 4380 rock', 'psychedelic rock', 'folk rock', 'pop-rock 4381 rap 4382 rock 4383 pop 4384 pop', 'soul 4385 pop 4386 r&b', 'stax', 'soul 4387 pop 4388 pop 4389 pop', 'soul 4390 pop', 'folk 4391 country', 'pop 4392 pop 4393 pop 4394 pop 4395 pop 4396 pop 4397 pop 4398 pop 4399 country 4400 r&b', 'soul 4401 pop 4402 rock 4403 pop 4404 rock', 'pop 4405 rap 4406 rock', 'pop-rock', 'sixties 4407 rap 4408 pop', 'r&b', 'jazz', 'blues', 'soul 4409 r&b', 'rock', 'jazz 4410 pop', 'ballad 4411 pop 4412 pop 4413 rock', 'psychedelic', 'hard rock', 'psychedelic rock 4414 pop 4415 pop 4416 pop 4417 pop 4418 pop 4419 pop 4420 r&b', 'blues 4421 r&b', 'soul 4422 rock', 'psychedelic rock 4423 pop', 'rock', 'soft rock', 'adult contemporary', 'cover', 'sixties', 'protest songs', 'folk rock 4424 r&b', 'soul 4425 rock 4426 pop 4427 pop 4428 pop 4429 rock', 'r&b', 'soul 4430 pop 4431 rock 4432 pop 4433 pop', 'r&b', 'soundtrack', 'sixties', 'funk', 'soul jazz', 'soul pop', 'soul', 'stax 4434 pop 4435 pop 4436 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 4437 pop 4438 pop', 'rock 4439 rap 4440 rock', 'blues 4441 rock 4442 pop 4443 pop 4444 pop 4445 pop 4446 rock', 'pop 4447 rap 4448 rock', 'southern rock', 'garage rock 4449 country 4450 pop 4451 rock', 'sixties', 'psychedelic', 'psychedelic rock 4452 pop 4453 rock', 'pop 4454 pop 4455 pop 4456 pop 4457 pop', 'cover 4458 pop 4459 rap 4460 rap 4461 pop', 'soul 4462 r&b', 'pop', 'ballad', 'adult contemporary', 'easy listening', 'orchestral', 'soul', 'soul pop 4463 pop 4464 pop 4465 pop', 'r&b', 'sixties', 'cover', 'soul', 'soul pop', 'baroque pop 4466 pop 4467 pop 4468 pop 4469 pop', 'baroque pop 4470 rock', 'pop-rock', 'psychedelic', 'psychedelic rock 4471 pop', 'psychedelic 4472 rock 4473 country', 'cover 4474 pop 4475 pop 4476 r&b', 'motown 4477 rock 4478 pop 4479 r&b', 'pop', 'jump blues', 'soul', 'soul pop 4480 r&b', 'soul 4481 pop', 'kwela', 'jazz', 'isixhosa', 'south africa 4482 r&b', 'soul 4483 rap 4484 pop 4485 rap 4486 pop 4487 r&b', 'motown 4488 country', 'rock 4489 rock 4490 rock', 'sixties 4491 pop 4492 rap 4493 country', 'rock 4494 r&b', 'soul', 'funk 4495 pop', 'stax 4496 pop 4497 rap', 'hip-hop', 'west coast 4498 r&b', 'pop', 'motown', 'funk', 'psychedelic', 'soul', 'soul pop 4499 r&b', 'pop', 'soul pop', 'soul', 'girl group 4500 pop', 'folk 4501 pop 4502 pop 4503 pop 4504 rock 4505 rock', 'pop 4506 pop 4507 pop 4508 rap 4509 pop 4510 pop 4511 pop 4512 pop 4513 r&b', 'funk', 'soul 4514 pop 4515 pop 4516 pop 4517 pop 4518 pop 4519 pop 4520 country 4521 pop 4522 pop 4523 rock', 'funk rock', 'new wave', 'post-punk 4524 pop', 'baroque pop 4525 pop 4526 pop', 'folk', 'blues 4527 pop 4528 pop', 'soul 4529 pop', 'r&b', 'soundtrack', 'motown', 'soul 4530 pop 4531 r&b', 'soul 4532 pop 4533 r&b', 'rock 4534 pop', 'motown 4535 rock 4536 pop 4537 r&b', 'funk', 'soul', 'jazz fusion 4538 pop 4539 pop', 'baroque pop', 'folk 4540 rock 4541 r&b', 'rap 4542 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 4543 pop', 'rock', 'bubblegum pop', 'sixties', 'piano 4544 pop', 'motown 4545 rock', 'pop', 'baroque pop', 'adult contemporary', 'ballad', 'pop-rock 4546 pop 4547 rock', 'soul 4548 rap 4549 pop 4550 pop 4551 pop', 'baroque pop', 'psychedelic rock', 'pop-rock', 'folk rock 4552 rock 4553 pop 4554 rap', 'uk drill', 'uk 4555 pop 4556 pop 4557 pop 4558 rock', 'sixties', 'folk', 'psychedelic rock', 'folk rock 4559 pop 4560 r&b', 'pop', 'soul 4561 pop 4562 pop', 'motown 4563 pop 4564 r&b', 'pop', 'soul', 'soul pop 4565 rock', 'pop 4566 pop', 'rock', 'sixties', 'british rock', 'uk', 'singer-songwriter', 'art rock', 'psychedelic rock', 'baroque pop', 'psychedelic 4567 r&b', 'rock 4568 pop 4569 pop 4570 rap 4571 r&b', 'soul 4572 pop 4573 pop 4574 pop 4575 pop 4576 pop 4577 rock 4578 rap 4579 pop 4580 rock', 'uk', 'singer-songwriter', 'sixties', 'art rock', 'british rock', 'psychedelic rock', 'psychedelic 4581 pop', 'r&b', 'pop-rock', 'soul', 'soul pop 4582 pop 4583 pop 4584 pop', 'rock', 'sixties', 'psychedelic rock', 'blues rock 4585 r&b', 'pop', 'funk', 'soul', 'funk-pop', 'soul pop 4586 rap', 'detroit', 'rap rock', 'hip-hop 4587 pop 4588 pop 4589 pop 4590 rap 4591 rock', 'pop', 'bubblegum pop', 'psychedelic rock 4592 pop 4593 pop 4594 rock', 'psychedelic rock 4595 r&b 4596 pop 4597 rock', 'uk', 'british rock', 'psychedelic rock 4598 pop 4599 pop 4600 rap', 'conscious hip-hop', 'electro-hop 4601 pop 4602 pop 4603 pop 4604 rock', 'sixties', 'hard rock', 'blues', 'psychedelic', 'psychedelic rock', 'blues rock 4605 pop 4606 pop', 'blue-eyed soul 4607 country 4608 pop 4609 rock', 'jazz fusion', 'blue-eyed soul', 'pop-rock 4610 pop 4611 rap 4612 pop', 'r&b', 'soul', 'soul pop 4613 rap 4614 r&b', 'soul 4615 pop 4616 rock', 'ballad', 'uk', 'sixties', 'piano', 'singer-songwriter', 'british rock', 'psychedelic rock 4617 pop 4618 pop 4619 pop 4620 pop 4621 pop 4622 pop 4623 rock', 'punk rock', 'alternative', 'indie rock', 'indie 4624 rock 4625 pop 4626 pop', 'psychedelic', 'folk 4627 r&b', 'pop', 'ballad', 'adult contemporary', 'easy listening', 'orchestral', 'soul', 'soul pop 4628 pop 4629 pop 4630 pop 4631 pop 4632 rock 4633 rap', 'hip-hop', 'underground hip-hop 4634 r&b 4635 rock', 'sixties', 'hard rock', 'psychedelic rock 4636 pop 4637 pop 4638 r&b', 'seventies', 'disco', 'funk', 'soul 4639 r&b', 'pop', 'soul 4640 pop', 'blues 4641 rock', 'psychedelic rock', 'sixties', 'folk', 'folk rock 4642 pop', 'screen 4643 pop', 'uk 4644 rap 4645 r&b', 'pop', 'funk', 'soul', 'funk-pop', 'soul pop 4646 r&b', 'soul 4647 country 4648 r&b 4649 pop 4650 r&b', 'rock', 'stax', 'soul pop', 'soul 4651 r&b', 'stax', 'soul 4652 rock 4653 pop 4654 r&b', 'funk 4655 country', 'rock 4656 r&b', 'pop', 'doo-wop', 'eighties', 'soul pop', 'cover 4657 rap', 'african languages', 'south africa 4658 country', 'rock 4659 pop 4660 rap 4661 pop 4662 pop', 'pop-rock', 'sixties 4663 r&b', 'motown 4664 pop', 'blues 4665 pop 4666 r&b 4667 rap 4668 pop 4669 pop 4670 rap 4671 pop', 'psychedelic 4672 pop 4673 r&b', 'motown 4674 pop', 'r&b', 'rock', 'psychedelic soul', 'funk', 'funk rock', 'psychedelic', 'soul', 'psychedelic rock', 'pop-rock', 'soul pop 4675 pop', 'pop-rock 4676 pop 4677 pop 4678 pop', 'soul 4679 rock 4680 r&b 4681 pop', 'r&b', 'stax', 'soul 4682 pop 4683 rap 4684 pop 4685 r&b', 'pop', 'jazz', 'uk', 'sixties 4686 pop 4687 r&b', 'soul 4688 r&b', 'motown 4689 pop 4690 pop 4691 pop 4692 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 4693 pop', 'easy listening', 'jazz 4694 rap 4695 rock 4696 pop 4697 rock', 'seventies 4698 pop', 'r&b', 'cover', 'jazz', 'swing jazz', 'soul jazz', 'soul', 'soul pop 4699 pop', 'r&b', 'soul', 'motown 4700 pop', 'rap', 'r&b', 'dark pop', 'singer-songwriter', 'dancehall', 'soul pop', 'soul', 'trap', 'hardcore hip-hop', 'conscious hip-hop 4701 r&b', 'pop', 'cover', 'ballad', 'easy listening', 'orchestral', 'soul', 'soul pop 4702 pop 4703 rock', 'australia', 'doom metal', 'metal', 'stoner metal', 'stoner rock 4704 rock', 'ballad 4705 country', 'pop 4706 pop', 'r&b', 'singer-songwriter', 'soul pop', 'soul 4707 pop 4708 rock', 'baroque pop', 'folk 4709 country 4710 pop 4711 r&b', 'rock', 'soul 4712 pop 4713 pop', 'sixties 4714 pop 4715 rock', 'psychedelic rock', 'blues rock', 'cover 4716 pop 4717 rap', 'boom bap', 'hip-hop', 'hardcore', 'east coast 4718 pop 4719 pop 4720 rock', 'pop', 'psychedelic rock', 'sixties 4721 pop 4722 pop 4723 r&b', 'pop', 'soul', 'motown 4724 pop 4725 pop 4726 pop 4727 pop', 'funk', 'cover', 'motown 4728 pop 4729 pop 4730 pop 4731 pop', 'r&b', 'soul pop', 'funk-pop', 'funk', 'soul 4732 pop', 'motown 4733 pop 4734 pop 4735 pop 4736 pop 4737 pop 4738 pop 4739 pop 4740 r&b', 'pop', 'doo-wop', 'soul 4741 rock', 'electronic 4742 pop 4743 pop 4744 pop 4745 rock', 'sixties', 'jazz', 'psychedelic rock', 'blues rock 4746 pop', 'baroque pop', 'piano', 'ballad', 'sixties', 'wales', 'uk 4747 pop 4748 rock 4749 pop 4750 country', 'rock 4751 pop 4752 pop 4753 country', 'pop 4754 pop 4755 pop 4756 pop 4757 pop 4758 rock', 'sixties', 'protest songs 4759 rock 4760 pop', 'r&b', 'funk 4761 rock', 'pop 4762 rock 4763 r&b 4764 country', 'folk 4765 pop', 'south africa', 'folk 4766 rock', 'indian', 'world music 4767 country', 'honky tonk 4768 pop 4769 pop', 'r&b', 'singer-songwriter', 'funk', 'soul', 'soul pop', 'motown 4770 pop 4771 pop', 'r&b', 'soul', 'soul pop 4772 pop 4773 pop 4774 country 4775 pop 4776 rock 4777 pop 4778 pop 4779 r&b', 'soul 4780 rock 4781 r&b', 'rock', 'motown 4782 r&b 4783 r&b', 'pop', 'soundtrack', 'easy listening', 'adult contemporary', 'soul', 'soul pop 4784 pop 4785 r&b', 'pop', 'cover', 'ballad', 'adult contemporary', 'easy listening', 'orchestral', 'soul', 'soul pop 4786 pop 4787 rap 4788 rock', 'uk', 'british rock', 'psychedelic rock 4789 r&b 4790 pop 4791 pop 4792 pop 4793 rock 4794 r&b', 'soul', 'motown 4795 pop 4796 country', 'rock 4797 rock', 'psychedelic', 'pop-rock 4798 r&b', 'soul', 'motown 4799 rock 4800 pop 4801 pop 4802 rock', 'sixties', 'singer-songwriter', 'folk', 'folk rock 4803 r&b', 'stax', 'soul 4804 pop 4805 pop 4806 pop 4807 pop', 'motown 4808 pop 4809 r&b', 'pop', 'motown 4810 pop', 'rock 4811 pop 4812 r&b', 'ballad', 'orchestral', 'soul', 'sixties 4813 pop 4814 pop 4815 pop', 'pop country 4816 rap 4817 pop 4818 pop', 'jazz', 'latin jazz', 'cover', 'sixties', 'bossa nova 4819 pop', 'baroque pop', 'orchestral', 'sixties 4820 rock', 'country 4821 pop 4822 r&b', 'pop', 'soul', 'jazz', 'soul jazz', 'soul pop 4823 pop 4824 rock 4825 rock 4826 pop 4827 r&b', 'sixties', 'soul 4828 pop 4829 pop', 'soundtrack 4830 pop', 'pop-rock', 'sixties 4831 pop 4832 pop', 'memes 4833 pop 4834 pop 4835 pop 4836 pop 4837 r&b', 'soul 4838 pop', 'r&b', 'soul pop', 'funk-pop', 'funk', 'soul 4839 r&b', 'pop', 'soul', 'soul pop 4840 rap', 'r&b', 'funk', 'spoken word', 'soul 4841 rap', 'pop', 'folk 4842 rock 4843 pop 4844 country', 'singer-songwriter', 'retro', 'rockabilly 4845 rock', 'pop', 'soundtrack', 'spanish rock', 'sixties', 'blue-eyed soul', 'pop-rock 4846 rap 4847 pop 4848 rock 4849 r&b', 'pop', 'soul', 'motown 4850 pop', 'sixties', 'pop-rock', 'bubblegum pop 4851 r&b', 'motown 4852 pop 4853 pop 4854 pop 4855 r&b 4856 pop 4857 rock', 'sixties', 'uk', 'blues rock', 'hard rock', 'british rock 4858 pop', 'motown 4859 pop 4860 pop', 'motown 4861 pop 4862 pop 4863 pop 4864 pop', 'motown 4865 pop', 'r&b', 'cover', 'soul', 'soul pop 4866 pop 4867 pop 4868 pop 4869 pop 4870 r&b', 'sixties', 'cover', 'soul 4871 rap', 'soul', 'funk 4872 pop 4873 r&b', 'rock 4874 country', 'rock 4875 pop 4876 pop', 'motown 4877 pop 4878 pop 4879 rock 4880 rock', 'soul', 'pop-rock 4881 pop 4882 rap', 'detroit', 'posse cut', 'remix', 'shadyxv 4883 country 4884 country', 'rock', 'soundtrack 4885 r&b', 'soul 4886 pop 4887 pop 4888 rap 4889 rock', 'pop-punk', 'post-hardcore', 'emo 4890 r&b', 'soul 4891 country 4892 pop 4893 r&b 4894 rap', 'battle rap 4895 rock', 'garage rock', 'psychedelic rock', 'alternative rock 4896 rap', 'ballad', 'east coast 4897 pop 4898 pop', 'rock', 'sixties', 'psychedelic rock', 'blues rock 4899 r&b', 'pop', 'soul', 'soul pop 4900 rock 4901 country', 'honky tonk 4902 rock', 'blues rock', 'psychedelic rock 4903 pop 4904 pop 4905 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 4906 rock', 'sixties', 'hard rock', 'metal 4907 pop 4908 r&b 4909 pop 4910 pop', 'psychedelic', 'baroque pop 4911 r&b 4912 pop 4913 rock 4914 pop', 'sixties 4915 rock', 'pop 4916 pop', 'r&b', 'singer-songwriter', 'funk', 'soul', 'soul pop', 'motown 4917 pop 4918 rock 4919 pop', 'motown 4920 r&b', 'pop', 'soul', 'soul pop 4921 rock', 'dream pop', 'piano', 'adult alternative', 'easy listening', 'pop-rock', 'space rock', 'progressive rock', 'psychedelic rock', 'baroque pop 4922 rock', 'cover', 'puerto rico', 'latin rock 4923 pop', 'r&b', 'soul', 'soul pop 4924 pop', 'baroque pop 4925 r&b', 'pop', 'soul pop', 'ballad', 'soul', 'motown', 'blue-eyed soul 4926 pop 4927 pop 4928 rock', 'pop', 'pop-rock 4929 pop 4930 r&b', 'soul 4931 r&b', 'rock', 'pop', 'psychedelic soul', 'psychedelic rock', 'psychedelic', 'soul', 'soul pop 4932 pop 4933 country', 'retro', 'folk 4934 pop 4935 pop 4936 pop', 'motown 4937 pop 4938 pop', 'bubblegum pop', 'pop-rock 4939 pop 4940 r&b', 'funk', 'soul 4941 pop 4942 pop 4943 pop 4944 pop 4945 pop 4946 pop 4947 rock', 'psychedelic rock', 'folk rock 4948 pop', 'motown 4949 rap', 'east coast', 'hardcore hip-hop', 'hip-hop 4950 pop', 'motown 4951 pop', 'motown 4952 r&b', 'rock', 'pop', 'psychedelic soul', 'funk rock', 'psychedelic rock', 'psychedelic', 'funk', 'soul pop', 'soul 4953 rock', 'r&b', 'pop', 'psychedelic soul', 'psychedelic rock', 'funk rock', 'funk', 'psychedelic', 'soul', 'soul pop 4954 rap 4955 rock', 'psychedelic rock', 'blues rock 4956 r&b', 'pop', 'sixties', 'soul', 'soul pop 4957 r&b', 'pop', 'soul pop', 'cover', 'sixties', 'gospel', 'soul 4958 rock', 'sixties', 'cover', 'british rock', 'uk', 'psychedelic rock', 'hard rock 4959 r&b', 'pop', 'soul', 'motown 4960 pop 4961 r&b 4962 pop', 'r&b', 'cover', 'ballad', 'easy listening', 'orchestral', 'soul pop', 'soul 4963 rock 4964 pop 4965 country 4966 pop', 'motown 4967 rock', 'pop-rock', 'sixties 4968 r&b', 'soul 4969 rock', 'west coast', 'progressive rock', 'heavy metal', 'hard rock', 'psychedelic rock', 'psychedelic', 'metal 4970 pop 4971 r&b', 'funk 4972 pop 4973 pop 4974 rock 4975 rock', 'pop-rock 4976 pop 4977 pop 4978 pop 4979 pop 4980 rock', 'blues rock', 'blues', 'psychedelic rock 4981 r&b', 'stax', 'soul 4982 r&b', 'soul 4983 rock', 'roots', 'folk rock 4984 r&b', 'pop', 'soul', 'soul pop 4985 pop 4986 rock 4987 rap 4988 r&b 4989 pop', 'psychedelic', 'adult contemporary 4990 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 4991 pop 4992 pop 4993 rock', 'british rock', 'uk', 'psychedelic rock 4994 rock', 'sixties', 'british rock', 'proto-punk', 'blues rock', 'hard rock 4995 country 4996 pop 4997 rock', 'soundtrack', 'psychedelic rock', 'garage rock', 'alternative rock 4998 rap', 'electronic', 'experimental 4999 r&b', 'soul 5000 pop 5001 rock', 'progressive rock', 'piano rock', 'piano', 'ballad', 'uk', 'sixties', 'singer-songwriter', 'british rock', 'pop-rock 5002 rock', 'sixties', 'uk', 'british rock', 'protest songs', 'singer-songwriter', 'hard rock', 'garage rock', 'proto-punk 5003 r&b', 'rock', 'motown 5004 pop 5005 pop 5006 pop 5007 pop 5008 pop 5009 pop 5010 pop', 'reggae 5011 pop 5012 rock', 'sixties', 'blues', 'psychedelic', 'psychedelic rock', 'hard rock', 'cover', 'blues rock 5013 r&b', 'soul 5014 pop 5015 pop 5016 rap 5017 pop', 'sixties 5018 pop 5019 pop', 'motown 5020 r&b', 'pop', 'soul', 'soul pop 5021 rock', 'uk', 'sixties', 'folk 5022 pop 5023 pop 5024 pop 5025 pop 5026 pop 5027 pop 5028 rap 5029 country', 'rock 5030 pop 5031 rock', 'sixties', 'psychedelic rock', 'blues rock 5032 rock', 'folk', 'folk rock 5033 r&b', 'motown 5034 pop', 'psychedelic rock 5035 pop', 'alternative pop', 'uk 5036 rock', 'sixties', 'metal 5037 rock', 'pop', 'garage rock', 'bubblegum pop', 'pop-rock 5038 pop 5039 r&b', 'pop', 'chill', 'easy listening', 'adult contemporary', 'alternative r&b', 'ballad', 'singer-songwriter 5040 rap', 'freestyle', 'covid-19', 'charity 5041 pop', 'motown 5042 r&b', 'soul', 'stax 5043 rock 5044 r&b', 'rock', 'motown 5045 r&b', 'soul 5046 pop 5047 country', 'rock 5048 pop', 'pop-rock 5049 rock', 'pop', 'folk rock 5050 pop', 'rock', 'psychedelic rock', 'soundtrack', 'psychedelic 5051 country 5052 pop 5053 rock', 'pop 5054 pop 5055 rap', 'pluggnb 5056 pop 5057 r&b', 'pop 5058 rock', 'soul 5059 pop 5060 r&b', 'stax', 'soul 5061 pop 5062 pop 5063 pop 5064 pop 5065 r&b 5066 pop 5067 r&b', 'jazz 5068 rock', 'stax 5069 r&b', 'rock', 'pop', 'history', 'adult contemporary', 'baroque pop', 'ballad', 'civil rights', 'folk rock', 'folk', 'pop-rock 5070 pop 5071 pop 5072 country 5073 pop 5074 pop 5075 pop 5076 rap', 'australia', 'cover', 'aussie hip-hop 5077 pop 5078 country 5079 pop 5080 pop 5081 pop 5082 pop 5083 rap', 'sports 5084 rock', 'pop 5085 pop 5086 country', 'sixties', 'pop country 5087 pop', 'r&b', 'soundtrack', 'sixties', 'singer-songwriter', 'funk', 'soul', 'soul pop', 'motown 5088 pop 5089 pop', 'motown 5090 pop 5091 pop 5092 rock 5093 pop 5094 country', 'pop 5095 pop', 'pop-rock 5096 pop', 'baroque pop 5097 rock', 'thrash metal 5098 r&b 5099 pop 5100 r&b', 'funk', 'soul', 'blues 5101 pop 5102 rock', 'uk 5103 rock', 'blues rock', 'cover 5104 rap 5105 country', 'sixties 5106 r&b', 'psychedelic soul', 'motown', 'psychedelic', 'soul', 'soul pop', 'funk 5107 pop 5108 rap', 'hardcore hip-hop', 'east coast', 'west coast', 'a cappella', 'freestyle', 'cypher', 'shadyxv 5109 r&b', 'soul 5110 pop 5111 pop 5112 rock', 'theme song', 'tv', 'cover 5113 pop 5114 pop 5115 country 5116 pop 5117 pop 5118 rock', 'pop', 'sixties', 'ballad', 'pop-rock 5119 r&b', 'rock', 'soul', 'motown 5120 r&b', 'sixties', 'soul 5121 pop 5122 rap 5123 pop 5124 rap', 'belgië/belgique 5125 pop', 'soundtrack 5126 pop 5127 pop 5128 pop 5129 r&b 5130 pop 5131 pop 5132 pop 5133 pop', 'en español', 'latin pop 5134 r&b', 'pop', 'live', 'cover', 'funk', 'soul', 'soul pop', 'funk-pop 5135 pop', 'r&b', 'soul', 'blue-eyed soul 5136 rock', 'psychedelic', 'hard rock', 'folk rock', 'blues rock', 'psychedelic rock 5137 r&b', 'soul', 'ballad 5138 pop 5139 pop', 'r&b', 'sixties', 'psychedelic soul', 'funk', 'psychedelic', 'soul', 'soul pop 5140 r&b', 'pop', 'soul', 'soul pop 5141 pop 5142 country', 'rock', 'sixties 5143 pop', 'motown 5144 pop 5145 rock', 'blues 5146 pop', 'motown 5147 country 5148 pop 5149 pop 5150 pop 5151 pop 5152 country 5153 rock', 'pop', 'pop-rock 5154 rock', 'sixties', 'experimental rock', 'psychedelic rock 5155 r&b 5156 pop 5157 r&b', 'ballad', 'funk', 'soul 5158 rock', 'pop 5159 pop 5160 rap 5161 rock', 'psychedelic rock', 'singer-songwriter 5162 pop 5163 r&b', 'soul 5164 r&b', 'pop', 'soul', 'soul pop 5165 pop 5166 pop 5167 r&b', 'soul 5168 r&b', 'pop', 'christmas', 'funk', 'soul', 'funk-pop', 'soul pop 5169 pop 5170 pop 5171 r&b', 'soul', 'stax 5172 country', 'rock 5173 rock', 'pop', 'baroque pop 5174 pop 5175 pop 5176 rap 5177 pop 5178 pop', 'psychedelic', 'pop-rock 5179 pop 5180 pop', 'easy listening', 'baroque pop', 'sixties 5181 pop 5182 r&b 5183 pop 5184 r&b', 'pop', 'soul', 'motown 5185 pop 5186 pop 5187 rock', 'ballad', 'sixties', 'uk', 'pop-rock 5188 pop 5189 pop 5190 rock', 'pop', 'psychedelic', 'psychedelic rock 5191 r&b', 'jazz 5192 pop 5193 rock', 'country', 'psychedelic rock', 'folk rock 5194 pop 5195 pop 5196 pop 5197 rock 5198 r&b', 'soul 5199 pop', 'motown 5200 pop 5201 pop 5202 rap 5203 rap 5204 pop 5205 pop', 'soul pop', 'doo-wop 5206 pop 5207 pop 5208 pop', 'motown 5209 pop 5210 pop', 'motown 5211 rock 5212 pop 5213 r&b 5214 pop 5215 rock', 'southern rock', 'folk rock', 'sixties 5216 pop', 'r&b', 'funk', 'soul pop', 'soul 5217 rock', 'uk 5218 pop 5219 pop 5220 pop 5221 pop 5222 r&b', 'blues', 'soul 5223 rock', 'cover', 'blues rock 5224 rock', 'soul', 'cover 5225 pop', 'rap', 'chicago rap', 'motown', 'remix', 'gangsta rap', 'pop rap', 'hardcore hip-hop', 'hip-hop', 'trap 5226 pop', 'motown 5227 rap', 'italy 5228 pop 5229 pop 5230 pop 5231 r&b', 'pop', 'soul', 'soul pop 5232 pop 5233 r&b', 'pop', 'cover', 'ballad', 'orchestral', 'soul', 'soul pop 5234 country', 'folk 5235 rap 5236 pop 5237 rock', 'sixties', 'psychedelic rock 5238 pop 5239 rock', 'folk rock', 'singer-songwriter', 'sixties 5240 pop 5241 pop 5242 r&b', 'pop', 'cover', 'ballad', 'easy listening', 'orchestral', 'soul', 'soul pop 5243 rock', 'soul 5244 pop 5245 pop 5246 pop 5247 pop 5248 pop', "children's music", 'theme song 5249 country 5250 pop 5251 pop', 'motown 5252 r&b 5253 pop', 'r&b', 'singer-songwriter', 'funk', 'soul', 'soul pop', 'motown 5254 pop', 'bubblegum pop 5255 pop 5256 rock 5257 pop', 'pop-rock 5258 pop 5259 rock', 'country 5260 pop 5261 pop 5262 rap 5263 pop', 'soundtrack', 'motown 5264 r&b', 'rock', 'cover', 'soul 5265 pop 5266 rock 5267 pop 5268 pop 5269 rock', 'pop', 'sixties', 'pop-rock 5270 rap', 'uk', 'grime', 'uk rap 5271 country 5272 pop 5273 pop', 'rock', 'pop-rock', 'soundtrack 5274 rock 5275 rock', 'stax 5276 r&b', 'soul', 'disco 5277 pop 5278 country 5279 pop 5280 r&b 5281 rock 5282 rock 5283 pop 5284 pop 5285 r&b', 'soul 5286 pop 5287 pop 5288 rock', 'psychedelic rock 5289 pop 5290 rock', 'pop', 'pop-rock 5291 r&b', 'pop', 'motown 5292 rock', 'pop', 'r&b', 'psychedelic soul', 'psychedelic rock', 'funk rock', 'psychedelic', 'funk', 'soul pop', 'soul 5293 pop 5294 r&b', 'pop', 'soul 5295 r&b 5296 r&b 5297 pop 5298 r&b', 'pop', 'motown 5299 pop 5300 pop', 'soundtrack 5301 pop 5302 rock', 'hard rock', 'garage rock', 'proto-punk 5303 pop', 'r&b', 'big band', 'jazz', 'soul jazz', 'cover', 'soul', 'soul pop 5304 pop 5305 r&b', 'soul', 'funk 5306 r&b', 'blues rock 5307 pop', 'baroque pop 5308 country', 'rock 5309 pop', 'r&b', 'cover', 'ballad', 'orchestral', 'soul pop', 'soul 5310 r&b', 'soul 5311 pop 5312 pop 5313 pop 5314 rock 5315 r&b', 'soul 5316 pop', 'soul 5317 rap', 'battle rap 5318 pop', 'soundtrack', 'sixties', 'netflix', 'jazz', 'traditional 5319 pop 5320 pop 5321 pop', 'rock', 'psychedelic rock 5322 pop 5323 rock', 'sixties', 'retro', 'uk', 'heavy metal', 'blues rock', 'hard rock 5324 r&b 5325 pop 5326 r&b', 'soul 5327 pop', 'r&b', 'funk', 'soul', 'funk-pop', 'soul pop 5328 pop 5329 rock', 'glam rock', 'seventies', 'hard rock 5330 rock', 'singer-songwriter', 'folk rock 5331 r&b', 'south africa 5332 pop 5333 pop 5334 rock', 'pop 5335 pop', 'jazz', 'jazz fusion', 'jazz rock', 'sixties 5336 pop 5337 rock 5338 pop 5339 pop 5340 pop 5341 pop 5342 pop 5343 rock', 'pop', 'seventies', 'folk rock', 'pop-rock', 'folk 5344 pop 5345 pop 5346 pop', 'r&b', 'psychedelic soul', 'psychedelic rock', 'funk', 'psychedelic', 'soul', 'soul pop 5347 pop 5348 pop 5349 pop 5350 pop 5351 rap 5352 rap', 'gospel', 'trap', 'hip-hop 5353 r&b 5354 country 5355 pop', 'motown 5356 r&b', 'sixties', 'soul', 'soul pop 5357 pop 5358 pop', 'motown 5359 pop', 'soul pop', 'doo-wop 5360 pop 5361 country 5362 pop 5363 r&b', 'rock', 'motown 5364 pop', 'soul', 'gospel', 'christian 5365 pop 5366 pop 5367 rock', 'folk 5368 pop 5369 pop', 'americana', 'folk rock', 'pop-rock 5370 pop 5371 r&b', 'funk', 'soul 5372 r&b', 'pop', 'cover', 'soul', 'soul pop 5373 rock 5374 rap', 'battle rap 5375 country 5376 pop 5377 rock', 'heartland rock', 'roots 5378 country', 'rock 5379 rock', 'southern rock 5380 rock 5381 pop', 'jazz', 'brasil 5382 pop 5383 pop 5384 r&b', 'pop', 'cover', 'soul', 'blue-eyed soul 5385 rap 5386 rap 5387 pop 5388 r&b', 'soul 5389 pop 5390 pop', 'r&b', 'cover', 'jazz', 'soul jazz', 'soul', 'soul pop 5391 pop 5392 r&b', 'pop', 'ballad', 'easy listening', 'orchestral', 'funk', 'soundtrack', 'soul pop 5393 pop 5394 rock 5395 pop 5396 pop', 'motown 5397 pop 5398 pop 5399 r&b', 'soul 5400 pop 5401 rock 5402 pop 5403 r&b 5404 pop', 'jazz', 'motown 5405 pop 5406 r&b', 'rock 5407 pop 5408 country', 'rock', 'folk rock 5409 pop 5410 r&b', 'pop', 'motown', 'funk', 'psychedelic soul', 'soul', 'soul pop 5411 rock', 'soul', 'sixties', 'blue-eyed soul', 'psychedelic soul', 'psychedelic', 'psychedelic rock 5412 r&b', 'soul 5413 r&b', 'pop', 'soul', 'soul pop 5414 pop 5415 r&b', 'soul 5416 pop 5417 pop 5418 pop 5419 r&b', 'pop', 'rock', 'psychedelic', 'psychedelic rock', 'psychedelic soul', 'soul pop', 'funk', 'soul 5420 pop 5421 pop 5422 pop', 'baroque pop 5423 rock 5424 r&b', 'pop', 'motown 5425 r&b', 'pop', 'soul', 'funk 5426 pop', 'r&b', 'sixties', 'singer-songwriter', 'funk', 'soul', 'soul pop', 'motown 5427 pop 5428 r&b', 'soul 5429 rock 5430 pop 5431 pop 5432 pop 5433 rap 5434 pop 5435 country 5436 pop 5437 pop 5438 pop 5439 pop 5440 pop 5441 rock', 'tv', 'blue-eyed soul', 'psychedelic rock', 'psychedelic 5442 pop 5443 country', 'rock 5444 rock', 'uk', 'sixties 5445 r&b', 'funk', 'soul 5446 pop 5447 pop 5448 pop 5449 pop 5450 pop 5451 pop 5452 pop 5453 rap', 'alternative', 'producer', 'chillstep', 'psychedelic 5454 pop 5455 rock', 'sixties', 'baroque pop 5456 rock 5457 r&b', 'pop', 'soul', 'motown 5458 pop', 'cover 5459 pop 5460 r&b 5461 r&b', 'pop', 'cover', 'ballad', 'orchestral', 'soul', 'soul pop 5462 pop 5463 pop 5464 pop 5465 rock', 'covid-19', 'parody 5466 pop', 'poetry', 'contemporary poetry 5467 r&b', 'soul 5468 r&b', 'soul 5469 pop', 'motown 5470 pop 5471 pop 5472 rap', 'pop', 'spanish music', 'spanish pop', 'latin trap', 'atlanta', 'tropical house', 'cuba', 'latin music', 'trap', 'latin pop 5473 pop 5474 pop 5475 pop 5476 country 5477 r&b', 'soul 5478 pop', 'blues', 'soul', 'funk 5479 pop 5480 pop', 'sixties', 'jazz', 'latin jazz', 'bossa nova 5481 r&b', 'pop', 'motown', 'soul 5482 country', 'blues rock', 'folk 5483 country', 'rock 5484 rock', 'pop', 'pop-rock 5485 r&b', 'pop', 'blue-eyed soul', 'soul', 'pop-rock 5486 pop 5487 r&b', 'soul 5488 pop 5489 pop', 'r&b', 'soul pop', 'soul 5490 rock 5491 rock 5492 pop 5493 pop 5494 pop 5495 country', 'rock', 'retro', 'pop-rock', 'adult contemporary', 'singer-songwriter', 'folk', 'ballad', 'folk rock 5496 pop 5497 rock 5498 pop 5499 pop 5500 pop 5501 pop', 'motown 5502 rock', 'hard rock', 'rockabilly', 'sixties', 'uk 5503 rock 5504 pop 5505 pop 5506 rock 5507 rap', 'atlanta', 'west coast', 'gangsta rap 5508 pop 5509 pop 5510 pop 5511 country', 'rockabilly 5512 country', 'folk 5513 rock', 'uk', 'sixties', 'folk rock', 'singer-songwriter', 'protest songs 5514 pop 5515 pop', 'pop-rock', 'sixties', 'bubblegum pop 5516 rap', 'battle rap 5517 pop 5518 r&b', 'soul 5519 pop 5520 r&b 5521 pop 5522 rock', 'retro', 'southern rock 5523 country', 'rock 5524 r&b', 'soul 5525 pop 5526 pop 5527 rock', 'singer-songwriter', 'folk rock', 'psychedelic rock', 'sixties 5528 pop 5529 r&b', 'pop', 'motown 5530 pop 5531 r&b', 'stax', 'soul 5532 rap', 'deutschsprachiger rap', 'deutschland 5533 rap 5534 pop 5535 r&b', 'soul 5536 pop 5537 pop', 'r&b', 'rock', 'psychedelic soul', 'soul pop', 'funk', 'soul 5538 pop 5539 pop 5540 r&b', 'soul 5541 country', 'pop 5542 rap 5543 rock', 'country', 'folk 5544 pop', 'soundtrack', 'musicals 5545 rock', 'pop-rock', 'adult contemporary', 'seventies', 'jazz fusion 5546 pop 5547 r&b', 'doo-wop 5548 pop 5549 r&b', 'pop', 'funk', 'soul 5550 pop 5551 rock', 'pop', 'ballad', 'sixties', 'singer-songwriter', 'cover', 'pop-rock', 'theme song', 'soundtrack', 'folk rock 5552 pop', 'motown 5553 rap 5554 pop', 'soul pop 5555 country 5556 r&b', 'blues', 'easy listening 5557 pop 5558 r&b', 'soul', 'motown 5559 pop 5560 pop 5561 pop 5562 pop 5563 r&b', 'rock', 'motown 5564 pop 5565 pop 5566 pop 5567 rap', 'battle rap 5568 r&b', 'pop', 'soul', 'motown 5569 pop', 'musicals', 'theatre', 'broadway 5570 r&b', 'soul 5571 pop 5572 country 5573 r&b', 'soul 5574 pop 5575 r&b', 'pop', 'ballad', 'easy listening', 'orchestral', 'soul', 'soul pop 5576 r&b', 'soul 5577 pop 5578 rap 5579 country 5580 pop 5581 pop 5582 pop 5583 pop 5584 pop 5585 pop', 'rock 5586 pop 5587 rock', 'sixties', 'big band', 'avant garde', 'bluegrass 5588 rock 5589 country 5590 pop 5591 pop', 'en español', 'argentina', 'latin urban', 'latin music 5592 rap 5593 pop', 'motown 5594 r&b', 'pop', 'funk', 'soul', 'soul pop 5595 rap', 'freestyle', 'uk', 'uk rap', 'drill', 'uk drill 5596 pop', 'country', 'rock', 'retro', 'cover', 'adult contemporary', 'rockabilly', 'pop-rock', 'ballad 5597 pop 5598 pop 5599 pop 5600 pop 5601 rap 5602 pop 5603 pop 5604 pop 5605 r&b', 'pop 5606 pop', 'retro', 'singer-songwriter 5607 country 5608 pop 5609 pop 5610 pop 5611 pop 5612 r&b 5613 pop 5614 pop', 'r&b', 'easy listening', 'cover', 'ballad', 'adult contemporary', 'orchestral', 'soul', 'soul pop 5615 pop 5616 pop', 'motown 5617 rock 5618 r&b 5619 r&b', 'soul 5620 pop 5621 pop 5622 pop 5623 rock', 'southern rock', 'sixties', 'retro', 'adult alternative', 'folk rock', 'pop-rock 5624 rock 5625 pop 5626 pop 5627 rap', 'lyric poetry', 'poetry', 'neo soul', 'jazz rap', 'conscious hip-hop', 'west coast 5628 pop 5629 rap', 'nerdcore', 'anime 5630 country', 'folk', 'seventies 5631 pop 5632 r&b 5633 pop 5634 pop 5635 pop 5636 rock', 'piano rock', 'uk', 'ballad', 'sixties', 'baroque pop', 'adult contemporary', 'soft rock', 'piano', 'orchestral', 'british rock', 'singer-songwriter', 'pop-rock 5637 pop 5638 rock 5639 r&b', 'pop 5640 rock', 'sixties 5641 pop', 'rock', 'adult alternative', 'blues rock', 'jazz fusion', 'pop-rock 5642 pop 5643 pop 5644 pop 5645 pop', 'r&b', 'ballad', 'adult contemporary', 'orchestral', 'soul', 'soul pop 5646 pop 5647 r&b', 'rock', 'motown 5648 pop 5649 r&b', 'pop', 'sixties', 'ballad', 'soul', 'soul pop', 'funk', 'funk-pop 5650 pop 5651 pop 5652 pop 5653 pop', 'rock', 'cover', 'folk 5654 pop 5655 pop 5656 r&b', 'pop', 'soul 5657 pop 5658 pop 5659 rock 5660 rock 5661 rock', 'singer-songwriter', 'sixties', 'soundtrack', 'protest songs 5662 rock 5663 rock', 'folk rock', 'folk', 'americana', 'roots 5664 pop 5665 pop 5666 country', 'rock', 'folk rock 5667 pop', 'rock', 'sixties', 'soundtrack 5668 pop 5669 country', 'sixties', 'honky tonk', 'satire', 'singer-songwriter 5670 rock', 'folk rock', 'sixties 5671 pop', 'spoken word 5672 pop', 'reggae 5673 r&b', 'soul 5674 pop 5675 r&b', 'motown', 'soul 5676 pop 5677 r&b', 'rap 5678 pop 5679 rock 5680 country 5681 pop', 'r&b', 'cover', 'soul', 'soul pop 5682 pop', 'motown 5683 country', 'rock', 'history', 'folk 5684 country', 'rock 5685 rap', 'hard bass', 'trap', 'gangsta rap', 'indie rap 5686 pop 5687 pop 5688 pop', 'r&b', 'sixties', 'video game', 'soundtrack', 'motown', 'soul pop', 'funk', 'soul 5689 country 5690 pop 5691 pop 5692 pop 5693 pop 5694 r&b', 'jazz', 'soul jazz', 'jazz-funk', 'funk', 'soul 5695 pop', 'pop-rock 5696 rap 5697 pop 5698 pop 5699 pop 5700 rock', 'uk', 'heavy metal', 'hard rock 5701 country', 'pop', 'soul 5702 pop 5703 pop 5704 r&b', 'rock', 'motown 5705 rock', 'blues rock', 'blues 5706 pop 5707 rock', 'en français', 'variété française', 'french pop', 'france', 'french rock 5708 pop 5709 pop 5710 rap', 'west coast', 'hip-hop', 'hardcore hip-hop 5711 pop 5712 rock', 'reggae rock', 'reggae 5713 pop 5714 r&b', 'pop', 'motown 5715 r&b', 'reggae', 'jamaica 5716 pop 5717 pop 5718 rock', 'pop', 'blues rock', 'cover 5719 pop 5720 rap', 'uk rap', 'uk 5721 pop 5722 r&b', 'pop', 'soul', 'motown 5723 rap 5724 pop 5725 r&b', 'jazz 5726 rock 5727 pop 5728 pop 5729 pop 5730 pop 5731 country 5732 r&b', 'jazz', 'soul jazz', 'jazz-funk', 'funk', 'soul 5733 pop 5734 r&b', 'motown 5735 rock', 'album-oriented rock (aor)', 'canada', 'pop-rock', 'hard rock', 'psychedelic rock 5736 pop 5737 pop', 'soundtrack 5738 pop', 'acoustic', 'singer-songwriter 5739 pop 5740 r&b 5741 r&b', 'blues', 'chicago blues 5742 pop 5743 pop 5744 rock 5745 rock', 'baroque pop', 'pop-rock', 'soft rock', 'uk', 'cover', 'sixties 5746 pop 5747 r&b', 'pop', 'cover', 'ballad', 'orchestral', 'easy listening', 'adult contemporary', 'soul pop', 'soul', 'pop-rock 5748 rock', 'blues rock', 'hard rock 5749 r&b', 'soul 5750 pop', 'blue-eyed soul 5751 rap 5752 r&b', 'rock', 'blues 5753 pop 5754 pop 5755 pop 5756 pop', 'bubblegum pop 5757 r&b 5758 pop 5759 pop 5760 pop 5761 rap 5762 r&b', 'jazz 5763 pop 5764 pop 5765 r&b', 'pop', 'trap 5766 r&b', 'soul 5767 pop 5768 pop', 'soul 5769 r&b', 'pop 5770 r&b', 'motown', 'psychedelic soul', 'funk', 'soul', 'psychedelic 5771 r&b 5772 rap 5773 rock', 'blues rock', 'psychedelic rock', 'jazz fusion', 'pop-rock', 'latin rock', 'méxico 5774 country', 'rock 5775 r&b', 'soul 5776 r&b', 'rap 5777 pop 5778 pop 5779 r&b', 'soul 5780 pop 5781 pop 5782 rap 5783 rock 5784 pop 5785 pop 5786 pop 5787 country 5788 rock', 'sixties', 'british rock', 'folk rock 5789 r&b', 'pop', 'cover', 'ballad', 'orchestral', 'soul', 'soul pop 5790 pop 5791 country 5792 rock', 'pop', 'folk rock', 'folk', 'seventies', 'easy listening', 'orchestral', 'adult contemporary', 'ballad', 'pop-rock', 'baroque pop', 'gospel 5793 r&b', 'soul', 'funk', 'stax 5794 pop', 'r&b', 'seventies', 'singer-songwriter', 'soul pop', 'motown', 'soul 5795 pop 5796 pop 5797 pop 5798 rock 5799 rock 5800 rock', 'pop 5801 rock', 'british rock', 'uk 5802 rap', 'trap', 'west coast 5803 rock 5804 rock', 'folk rock', 'sixties 5805 r&b', 'motown 5806 r&b', 'pop', 'soul', 'funk', 'funk-pop', 'soul pop 5807 r&b 5808 country', 'rock 5809 pop 5810 pop 5811 rock 5812 pop 5813 country', 'rock 5814 rap', 'battle rap 5815 rock', 'folk rock', 'americana 5816 rap', 'bay area', 'west coast 5817 pop', 'pop-rock', 'orchestral', 'seventies', 'uk', 'bubblegum pop 5818 rock 5819 pop 5820 rock 5821 rock 5822 r&b', 'soul 5823 rock 5824 pop 5825 pop 5826 pop 5827 rock 5828 rock', 'sixties', 'christian', 'christian rock', 'hard rock', 'gospel 5829 rock', 'singer-songwriter', 'seventies', 'uk 5830 pop 5831 pop 5832 rock', 'country', 'rockabilly 5833 pop 5834 pop 5835 pop 5836 pop 5837 rap 5838 pop 5839 r&b', 'pop', 'motown 5840 pop 5841 pop 5842 r&b', 'rock', 'motown 5843 r&b', 'pop 5844 pop 5845 pop 5846 rock', 'pop', 'pop-rock', 'seventies 5847 pop 5848 pop 5849 rap 5850 rock 5851 rap', 'battle rap 5852 r&b', 'pop', 'funk', 'soul', 'soul pop', 'seventies', 'motown', 'disney', 'soundtrack', 'bubblegum pop 5853 rock', 'sixties', 'retro', 'uk', 'blues rock', 'hard rock', 'heavy metal 5854 r&b', 'reggae', 'jamaica 5855 rock', 'motown 5856 country 5857 pop 5858 country 5859 rock', 'pop-rock 5860 pop 5861 pop 5862 pop', 'rock', 'piano rock', 'gospel', 'seventies', 'singer-songwriter', 'british rock', 'piano', 'easy listening', 'adult contemporary', 'uk', 'pop-rock', 'ballad 5863 r&b', 'soul 5864 rock 5865 rock', 'sixties', 'british rock', 'uk', 'blues rock', 'folk rock', 'psychedelic rock 5866 r&b', 'jazz', 'jazz-funk', 'soul jazz', 'soul', 'funk 5867 pop 5868 pop 5869 pop 5870 rap', 'west coast 5871 pop 5872 rock 5873 pop 5874 pop', 'musicals 5875 rock', 'folk 5876 pop 5877 rock 5878 rap 5879 pop 5880 country 5881 pop', 'pop-rock', 'seventies 5882 r&b', 'rock 5883 country 5884 pop 5885 pop 5886 pop 5887 pop 5888 rock', 'sixties', 'singer-songwriter', 'folk rock', 'folk', 'blues rock 5889 pop 5890 rap 5891 rock', 'soft rock', 'yacht rock', 'blue-eyed soul', 'seventies', 'jazz fusion 5892 rock', 'seventies', 'blues rock', 'hard rock', 'psychedelic rock', 'metal 5893 rap 5894 r&b', 'soul 5895 rock 5896 r&b 5897 r&b', 'funk', 'soul 5898 pop 5899 country', 'rock 5900 rock', 'pop', 'seventies', 'folk rock', 'pop-rock 5901 r&b', 'blues 5902 rock 5903 pop 5904 rap 5905 country', 'gospel 5906 rap', 'battle rap 5907 r&b 5908 pop', 'brasil', 'em português 5909 rap', 'battle rap 5910 pop 5911 r&b', 'pop', 'ballad', 'orchestral', 'seventies', 'easy listening', 'soul', 'soul pop 5912 r&b', 'pop', 'cover', 'ballad', 'soul', 'soul pop', 'seventies 5913 rock 5914 rock', 'pop 5915 pop 5916 pop', 'calypso 5917 r&b', 'motown', 'seventies', 'gospel 5918 pop 5919 pop 5920 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 5921 pop', 'r&b', 'orchestral', 'detroit', 'easy listening', 'ballad', 'seventies', 'soul pop', 'soul 5922 rap 5923 r&b 5924 pop 5925 r&b', 'pop', 'motown 5926 rap 5927 pop 5928 r&b', 'jazz', 'soul jazz', 'jazz-funk', 'funk', 'soul 5929 pop 5930 rock', 'folk', 'folk rock 5931 rock', 'progressive rock 5932 rock 5933 r&b', 'pop', 'motown', 'soul', 'doo-wop', 'soul pop 5934 r&b', 'pop', 'soul', 'motown 5935 pop 5936 rock', 'yacht rock 5937 rock', 'pop', 'power pop', 'pop-rock 5938 pop 5939 pop 5940 pop 5941 rock 5942 pop 5943 rap 5944 pop 5945 r&b', 'pop', 'doo-wop', 'soul 5946 pop 5947 pop 5948 pop 5949 pop 5950 pop 5951 pop 5952 rock 5953 pop 5954 pop 5955 r&b', 'seventies', 'soul 5956 pop 5957 pop 5958 rock', 'pop', 'pop-rock 5959 pop 5960 r&b', 'pop', 'soul', 'motown 5961 r&b', 'rock 5962 pop 5963 r&b', 'soundtrack', 'seventies', 'psychedelic soul', 'psychedelic', 'soul', 'funk', 'motown 5964 rock', 'funk rock', 'screen', 'soundtrack', 'cover', 'pop country', 'pop-rock 5965 pop 5966 pop 5967 pop 5968 pop 5969 rock', 'funk', 'blues', 'jazz fusion', 'latin music', 'psychedelic 5970 pop', 'r&b', 'funk', 'soul pop', 'soul 5971 pop 5972 pop 5973 pop 5974 rock', 'alternative rock', 'indie rock 5975 pop 5976 pop 5977 pop 5978 pop 5979 pop', 'cover', 'soft rock 5980 pop 5981 pop 5982 pop 5983 rap 5984 pop 5985 country', 'rock', 'folk rock 5986 pop', 'indie', 'folk 5987 r&b', 'stax 5988 r&b', 'soul', 'funk 5989 pop 5990 pop 5991 pop 5992 pop 5993 pop 5994 pop 5995 pop 5996 r&b', 'rock 5997 pop 5998 rock', 'soft rock', 'seventies', 'singer-songwriter', 'adult contemporary', 'yacht rock', 'ballad', 'pop-rock', 'easy listening 5999 pop 6000 country 6001 pop', 'seventies', 'easy listening', 'piano', 'pop-rock', 'baroque pop', 'ballad', 'adult contemporary 6002 pop 6003 pop 6004 pop 6005 pop 6006 pop 6007 rock', 'singer-songwriter', 'hard rock 6008 rap 6009 pop 6010 pop 6011 pop', 'r&b', 'seventies', 'singer-songwriter', 'motown', 'funk', 'soul pop', 'soul 6012 rock', 'singer-songwriter', 'protest songs', 'hard rock 6013 pop 6014 pop 6015 pop 6016 pop 6017 pop 6018 r&b', 'soul 6019 pop 6020 pop 6021 pop', 'folk rock 6022 pop 6023 pop 6024 pop 6025 pop', 'bubblegum pop 6026 country', 'rock', 'honky tonk 6027 country 6028 r&b', 'soul', 'funk 6029 r&b 6030 pop', 'r&b', 'hard rock', 'politics', 'seventies', 'motown', 'funk', 'soundtrack', 'soul pop', 'psychedelic soul', 'soul 6031 rock', 'seventies', 'uk 6032 rock', 'cover 6033 r&b', 'pop', 'ballad', 'orchestral', 'easy listening', 'seventies', 'soul', 'soul pop 6034 pop 6035 pop 6036 pop 6037 pop', 'pop-rock', 'seventies 6038 rap', 'aussie grime', 'aussie hip-hop', 'australia 6039 country 6040 pop 6041 pop 6042 pop', 'r&b', 'seventies', 'funk-pop', 'soul pop', 'funk 6043 pop', 'motown 6044 country 6045 rock 6046 r&b 6047 rap 6048 pop 6049 country', 'pop country 6050 rock 6051 r&b', 'rap 6052 r&b 6053 rock', 'adult contemporary', 'seventies', 'yacht rock', 'jazz fusion 6054 pop 6055 country', 'rock 6056 pop 6057 r&b', 'blues 6058 rap 6059 rock', 'pop 6060 pop 6061 r&b', 'motown', 'soul 6062 rock', 'pop-rock', 'folk rock', 'singer-songwriter', 'seventies', 'folk 6063 rock', 'r&b', 'motown 6064 pop 6065 rock 6066 rap', 'history 6067 pop', 'stax 6068 pop 6069 pop 6070 r&b', 'pop', 'ballad', 'orchestral', 'soul', 'soul pop', 'funk', 'funk-pop', 'disco', 'seventies 6071 pop', 'pop-rock 6072 pop 6073 pop 6074 r&b', 'cover', 'seventies', 'motown 6075 rap 6076 r&b', 'cover', 'soul 6077 country', 'rock 6078 pop 6079 pop 6080 rock 6081 pop 6082 pop 6083 country', 'rock', 'progressive rock', 'electric blues', 'blues', 'alternative', 'alternative rock', 'adult alternative', 'soft rock', 'psychedelic rock', 'psychedelic', 'seventies', 'blues rock', 'folk rock', 'folk 6084 pop 6085 pop', 'tv', "children's music 6086 rock 6087 country', 'pop', 'rock 6088 pop 6089 pop 6090 rock', 'seventies 6091 pop', 'rock', 'uk', 'piano', 'ballad', 'seventies', 'singer-songwriter', 'soul pop', 'blue-eyed soul', 'gospel 6092 rock', 'seventies', 'blues rock', 'hard rock 6093 r&b', 'soul 6094 r&b 6095 pop 6096 pop 6097 pop', 'rock', 'seventies', 'baroque pop', 'singer-songwriter', 'easy listening', 'pop-rock 6098 pop 6099 pop 6100 pop 6101 pop', 'uk 6102 r&b', 'pop', 'funk', 'soul 6103 r&b', 'pop', 'soul 6104 rap', 'road rap', 'uk rap', 'uk 6105 rock 6106 pop 6107 r&b', 'soul 6108 r&b', 'pop', 'cover', 'ballad', 'easy listening', 'orchestral', 'soul', 'soul pop 6109 pop', 'motown 6110 rap 6111 rap 6112 rock', 'pop 6113 rock', 'singer-songwriter', 'lgbtq+', 'uk', 'british rock', 'seventies', 'folk rock', 'folk 6114 pop', 'motown 6115 rock', 'funk rock', 'hard rock 6116 r&b', 'stax', 'soul 6117 rock', 'pop', 'seventies', 'soft rock', 'folk rock', 'pop-rock 6118 country', 'pop 6119 rock', 'halloween 6120 rock 6121 pop 6122 pop', 'folk 6123 pop 6124 pop 6125 r&b', 'pop', 'motown 6126 r&b', 'rock 6127 pop 6128 pop', 'soul pop 6129 rock', 'album-oriented rock (aor)', 'british rock', 'uk', 'adult alternative', 'experimental rock', 'progressive rock', 'jazz fusion', 'folk rock 6130 r&b', 'stax', 'soul 6131 rap', 'south africa 6132 country', 'folk 6133 rock', 'folk', 'folk rock', 'pop-rock 6134 pop 6135 rap 6136 pop', 'country', 'rock', 'ballad', 'memorial', 'piano', 'folk', 'seventies', 'pop-rock', 'adult contemporary', 'folk rock', 'singer-songwriter 6137 pop', 'seventies', 'easy listening', 'baroque pop', 'piano', 'ballad', 'adult contemporary', 'pop-rock 6138 r&b 6139 r&b', 'pop', 'ballad', 'orchestral', 'detroit', 'soul', 'soul pop', 'seventies 6140 rock 6141 rock', 'folk rock', 'psychedelic', 'baroque pop 6142 r&b', 'pop', 'soundtrack', 'ballad', 'adult contemporary', 'easy listening', 'seventies', 'motown', 'soul', 'soul pop 6143 pop 6144 pop', 'rock', 'baroque pop', 'folk rock', 'pop-rock', 'soft rock', 'seventies 6145 r&b 6146 pop 6147 pop 6148 pop 6149 pop 6150 r&b', 'soul 6151 pop 6152 rap 6153 rock 6154 rock', 'soft rock', 'ballad', 'seventies', 'easy listening', 'adult contemporary', 'yacht rock 6155 pop 6156 pop 6157 pop 6158 rock 6159 pop 6160 pop 6161 rock 6162 pop', 'r&b', 'soul', 'funk', 'funk-pop', 'soul pop 6163 r&b', 'pop', 'motown', 'psychedelic', 'soul', 'funk', 'funk rock', 'soul pop 6164 r&b 6165 rock', 'acid', 'psychedelic rock 6166 pop', 'r&b', 'soul', 'soul pop 6167 r&b 6168 rock', 'folk rock 6169 pop 6170 r&b', 'soul 6171 rap 6172 pop 6173 rock', 'cover 6174 rap 6175 rock', 'blues rock 6176 r&b 6177 pop 6178 r&b 6179 rock', 'folk rock', 'americana 6180 rap 6181 pop 6182 pop', 'r&b', 'soundtrack', 'sixties', 'singer-songwriter', 'motown', 'soul pop', 'soul 6183 rock 6184 rap 6185 r&b', 'seventies', 'funk', 'motown', 'soul 6186 country 6187 pop 6188 r&b', 'soul 6189 rock 6190 pop 6191 rock 6192 pop 6193 country 6194 r&b', 'funk 6195 country 6196 country 6197 r&b', 'pop', 'cover', 'seventies', 'funk', 'soul', 'soul pop', 'motown 6198 rock', 'seventies', 'contemporary folk', 'folk rock', 'singer-songwriter 6199 rock', 'pop', 'seventies', 'britpop', 'british rock', 'uk', 'pop-rock', 'power pop 6200 pop 6201 pop 6202 pop 6203 country 6204 r&b', 'blues 6205 rock', 'sixties', 'christian', 'christian rock', 'hard rock', 'gospel 6206 r&b 6207 pop', 'motown 6208 rock 6209 rock', 'seventies', 'pop-rock', 'jazz fusion 6210 pop 6211 rock 6212 r&b 6213 pop 6214 pop 6215 pop', 'electronic 6216 rock 6217 r&b', 'pop', 'motown', 'girl group', 'soul', 'soul pop 6218 country', 'rock', 'uk 6219 rock 6220 pop 6221 pop 6222 pop 6223 rock', 'blues rock', 'blues 6224 r&b 6225 pop 6226 country 6227 pop', 'rock', 'singer-songwriter', 'folk rock', 'folk', 'sixties 6228 pop 6229 rock', 'pop-rock 6230 pop 6231 rap', 'remix', 'mashup 6232 rock', 'uk', 'soundtrack', 'seventies', 'psychedelic rock', 'folk rock', 'blues rock', 'hard rock 6233 pop 6234 pop', 'r&b', 'soundtrack', 'funk', 'psychedelic soul', 'soul pop', 'soul 6235 pop 6236 country', 'pop', 'folk', 'seventies', 'cover 6237 country 6238 r&b', 'pop', 'cover', 'soul', 'soul pop 6239 pop 6240 r&b', 'pop', 'soul', 'motown 6241 pop 6242 rock', 'motown 6243 pop 6244 pop', 'rock', 'chamber pop', 'baroque pop', 'pop-rock', 'soft rock', 'seventies', 'singer-songwriter', 'piano', 'adult contemporary', 'ballad', 'uk 6245 pop 6246 pop 6247 pop', 'country', 'seventies 6248 rock', 'heavy metal', 'metal', 'hard rock', 'seventies', 'british rock', 'uk 6249 rock 6250 pop 6251 pop', 'rock', 'uk', 'baroque pop', 'symphonic rock', 'soft rock 6252 pop 6253 pop 6254 rock', 'blues rock', 'hard rock 6255 country', 'singer-songwriter', 'seventies', 'honky tonk 6256 country 6257 pop 6258 pop 6259 pop 6260 r&b', 'pop', 'rock', 'american indian', 'seventies', 'pop-rock 6261 rock', 'folk rock', 'seventies 6262 rock', 'folk', 'gospel 6263 country', 'rock', 'folk 6264 pop', 'motown 6265 rock 6266 r&b 6267 country', 'rock', 'retro 6268 r&b 6269 pop 6270 pop 6271 pop', 'motown', 'psychedelic soul 6272 rock', 'christian rock', 'gospel 6273 r&b', 'pop', 'ballad', 'seventies', 'soul', 'soul pop 6274 pop 6275 rap 6276 r&b', 'soul 6277 pop', 'motown 6278 pop 6279 rock 6280 r&b', 'motown 6281 country', 'rock', 'ballad', 'orchestral', 'canada', 'blue-eyed soul', 'seventies', 'singer-songwriter', 'folk 6282 pop 6283 country 6284 pop', 'motown 6285 rock', 'roots 6286 rock', 'pop-rock 6287 r&b', 'pop', 'soul', 'funk', 'soul pop', 'funk-pop 6288 pop 6289 pop 6290 rock', 'pop-rock', 'soft rock 6291 rock 6292 rock', 'pop', 'symphonic rock', 'pop-rock 6293 rock 6294 pop 6295 r&b 6296 pop 6297 pop', 'uk 6298 rock', 'history 6299 pop 6300 rock 6301 rock', 'southern rock', 'seventies', 'folk rock 6302 pop 6303 pop', 'r&b', 'soul pop', 'soul 6304 pop 6305 r&b 6306 r&b', 'soul 6307 pop 6308 country 6309 country', 'cover 6310 rap 6311 pop', 'motown 6312 pop 6313 rap', 'battle rap 6314 r&b', 'funk', 'soul 6315 rock', 'glam rock 6316 rock 6317 r&b 6318 r&b', 'rock 6319 r&b 6320 pop', 'motown 6321 r&b', 'pop', 'seventies', 'motown', 'soul', 'soul pop 6322 rock', 'canada', 'psychedelic rock 6323 rock', 'blues 6324 pop 6325 r&b', 'rock', 'seventies', 'punk rock 6326 pop 6327 pop', 'wales', 'uk', 'seventies', 'soundtrack 6328 pop 6329 r&b', 'rock', 'motown 6330 rock 6331 country', 'rock 6332 pop 6333 pop 6334 pop 6335 r&b', 'soul 6336 rap 6337 pop 6338 pop 6339 pop 6340 pop 6341 pop 6342 pop 6343 rock', 'singer-songwriter', 'yacht rock', 'seventies', 'folk 6344 country', 'rock 6345 r&b 6346 r&b', 'motown 6347 pop 6348 rock 6349 r&b', 'soul', 'stax 6350 r&b', 'pop', 'soul', 'motown 6351 r&b', 'blues 6352 pop', 'r&b', 'soul pop', 'seventies', 'singer-songwriter', 'motown', 'soul 6353 pop', 'soundtrack', 'cartoon', "children's music", 'en español 6354 rock', 'seventies', 'pop-rock', 'soft rock', 'jazz fusion 6355 rock 6356 r&b', 'cover', 'seventies', 'soul 6357 r&b 6358 pop 6359 pop 6360 rock', 'seventies', 'singer-songwriter', 'uk', 'british rock 6361 pop 6362 pop 6363 r&b', 'pop', 'soul', 'funk', 'soul pop', 'funk-pop 6364 pop 6365 country 6366 rock', 'adult alternative', 'album-oriented rock (aor)', 'seventies', 'blues rock', 'blues 6367 pop 6368 r&b', 'blues', 'seventies', 'soul 6369 pop', 'folk 6370 rock', 'history 6371 pop 6372 rock 6373 rock 6374 pop 6375 pop 6376 rock 6377 pop 6378 r&b 6379 pop 6380 rock 6381 country 6382 rock 6383 rock', 'seventies 6384 r&b', 'cover', 'seventies', 'motown', 'soul 6385 country', 'r&b 6386 rap', 'hardcore hip-hop', 'east coast 6387 country 6388 pop 6389 pop 6390 rock', 'seventies', 'uk', 'progressive rock 6391 r&b', 'cover', 'seventies', 'soul 6392 rap 6393 rock 6394 r&b 6395 pop 6396 pop 6397 pop 6398 r&b', 'pop', 'soul', 'motown 6399 country', 'alternative country', 'seventies', 'singer-songwriter', 'protest songs 6400 pop 6401 pop 6402 r&b', 'soul 6403 pop 6404 pop 6405 rock 6406 pop', 'cover 6407 rock', 'alternative rock 6408 rock 6409 pop 6410 rock', 'piano', 'ballad', 'seventies', 'adult contemporary', 'easy listening', 'yacht rock', 'singer-songwriter 6411 pop 6412 rock', 'pop', 'r&b', 'funk', 'soul', 'pop-rock', 'motown 6413 rap', 'trap', 'italian rap', 'italy 6414 rock', 'orchestral', 'blues', 'singer-songwriter', 'ballad', 'seventies', 'piano', 'blues rock', 'hard rock 6415 rap 6416 rock', 'pop', 'seventies', 'hard rock 6417 r&b', 'pop', 'seventies', 'motown', 'soul', 'bubblegum pop 6418 rock', 'history 6419 pop 6420 pop 6421 r&b', 'pop', 'soul 6422 rock 6423 pop 6424 pop', 'stax', 'soul 6425 rock', 'psychedelic rock', 'psychedelic', 'blues rock', 'blues', 'funk rock', 'funk 6426 pop 6427 rock', 'seventies', 'pop-rock', 'blues rock', 'psychedelic rock 6428 r&b', 'soul 6429 pop 6430 r&b', 'rock', 'soul', 'funk 6431 pop 6432 rock', 'seventies', 'contemporary folk', 'folk rock', 'singer-songwriter 6433 rock 6434 pop 6435 country 6436 country', 'bluegrass', 'adult contemporary', 'ballad', 'memes', 'seventies', 'singer-songwriter 6437 pop', 'motown 6438 pop 6439 pop 6440 pop', 'rock', 'pop-rock 6441 pop 6442 r&b', 'soul 6443 country', 'politics', 'military', 'spoken word 6444 pop 6445 rock 6446 r&b', 'motown 6447 country 6448 rap 6449 country 6450 r&b', 'soul 6451 pop 6452 pop 6453 rock', 'hard rock', 'rockabilly', 'british rock', 'uk', 'seventies', 'singer-songwriter', 'blues rock 6454 rock', 'seventies', 'uk', 'british rock', 'singer-songwriter 6455 r&b', 'motown 6456 rock 6457 r&b 6458 pop 6459 pop 6460 rap 6461 pop 6462 pop 6463 pop 6464 r&b', 'pop', 'blues', 'doo-wop', 'soul', 'soul pop 6465 rock', 'seventies', 'pop-rock', 'soft rock', 'jazz fusion 6466 rap', 'uk', 'uk rap 6467 pop 6468 pop', 'motown 6469 rock', 'glam rock 6470 pop 6471 pop 6472 pop 6473 pop 6474 pop', 'folk pop 6475 rock 6476 rap', 'battle rap 6477 country', 'pop 6478 rock', 'experimental rock 6479 pop 6480 pop 6481 r&b', 'stax', 'soul 6482 pop 6483 rock', 'folk rock 6484 r&b', 'classical music', 'piano 6485 rock 6486 pop 6487 rap 6488 pop 6489 rap 6490 pop', 'seventies 6491 r&b', 'pop', 'soul', 'stax 6492 pop 6493 pop 6494 rock 6495 rock', 'motown 6496 rap 6497 r&b', 'pop', 'motown 6498 r&b', 'pop', 'soul', 'soul pop', 'stax 6499 rap 6500 r&b', 'pop', 'funk-pop', 'funk', 'soul pop', 'soul 6501 rock 6502 rock', 'country 6503 rap', 'battle rap 6504 pop 6505 pop 6506 rock', 'folk 6507 country', 'rock', 'seventies', 'cover', 'adult contemporary', 'folk rock 6508 pop 6509 rock 6510 pop 6511 pop 6512 r&b', 'pop', 'motown 6513 pop', 'r&b', 'soul', 'soul pop', 'funk-pop', 'funk 6514 pop 6515 pop 6516 rap', 'battle rap 6517 rock 6518 r&b', 'funk', 'soul 6519 r&b', 'pop', 'cover', 'soul', 'soul pop 6520 rock', 'heavy metal', 'hard rock 6521 pop 6522 pop', 'r&b', 'funk', 'soul pop', 'soul', 'cover 6523 pop 6524 pop 6525 pop 6526 country', 'rock', 'british rock', 'uk', 'seventies', 'singer-songwriter', 'folk rock 6527 pop', 'r&b', 'seventies', 'singer-songwriter', 'soul pop', 'motown', 'soul 6528 pop 6529 pop 6530 r&b 6531 rap 6532 r&b 6533 rock', 'pop', 'seventies', 'art rock', 'folk', 'singer-songwriter 6534 pop', 'rock', 'easy listening', 'singer-songwriter', 'ballad', 'adult contemporary', 'baroque pop', 'pop-rock 6535 pop 6536 rap', 'rock', 'art rock', 'electronic rock', 'rap rock', 'hip-hop', 'alternative rock 6537 rock 6538 r&b', 'motown 6539 rap 6540 pop 6541 pop 6542 rock 6543 rock 6544 pop 6545 rap 6546 rock 6547 rock 6548 pop 6549 pop', 'r&b', 'alternative r&b', 'seventies', 'singer-songwriter', 'jazz fusion', 'motown', 'soul 6550 pop 6551 rock', 'piano', 'seventies', 'art rock', 'singer-songwriter', 'psychedelic', 'blues rock', 'psychedelic rock 6552 pop', 'r&b', 'motown', 'soul', 'soul pop 6553 pop', 'motown 6554 r&b', 'pop', 'soul 6555 pop 6556 pop 6557 r&b', 'soul 6558 pop 6559 pop', 'soul pop', 'seventies', 'motown', 'soul', 'bubblegum pop 6560 rock 6561 r&b', 'motown 6562 pop 6563 pop 6564 pop 6565 pop 6566 rock 6567 rock', 'seventies', 'soft rock 6568 rock', 'seventies', 'art rock', 'progressive rock', 'folk rock', 'hard rock 6569 rock', 'funk rock', 'motown 6570 pop 6571 r&b', 'seventies', 'blues', 'singer-songwriter', 'adult contemporary', 'soul 6572 rock', 'progressive rock 6573 pop 6574 r&b', 'motown 6575 r&b', 'singer-songwriter', 'smooth jazz', 'soul pop', 'seventies', 'soul 6576 rap 6577 pop 6578 r&b', 'soul 6579 pop 6580 pop 6581 r&b 6582 r&b', 'soul', 'cover', 'seventies 6583 pop 6584 rap 6585 pop 6586 rock 6587 rap 6588 pop 6589 rock 6590 pop 6591 pop 6592 rap 6593 r&b', 'rock', 'seventies', 'soul', 'funk rock 6594 pop', 'r&b', 'soul pop', 'soul', 'motown 6595 rock', 'pop', 'progressive rock 6596 pop 6597 rap', 'hip-hop 6598 pop 6599 pop 6600 pop 6601 pop 6602 rock 6603 pop 6604 pop 6605 rock 6606 rock', 'country 6607 pop', 'r&b', 'seventies', 'singer-songwriter', 'funk', 'motown', 'soul pop', 'soul 6608 r&b', 'motown', 'soul 6609 rock', 'hard rock', 'folk rock', 'svensk rap', 'britpop', 'progressive rock 6610 r&b', 'soul 6611 r&b 6612 pop 6613 rock 6614 pop 6615 country', 'rock 6616 country 6617 country 6618 pop 6619 pop 6620 country 6621 country 6622 pop 6623 pop', 'soundtrack', 'disney 6624 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 6625 r&b', 'soul 6626 rock 6627 r&b', 'seventies', 'funk', 'soul 6628 pop 6629 pop 6630 country 6631 r&b 6632 pop 6633 r&b', 'pop', 'jump blues', 'jazz', 'soul', 'soul pop 6634 r&b', 'pop', 'soul 6635 rap 6636 pop 6637 pop 6638 pop 6639 rock', 'folk', 'acoustic', 'folk rock', 'singer-songwriter 6640 pop 6641 rock 6642 pop 6643 country 6644 pop 6645 rock 6646 country', 'pop country 6647 pop 6648 pop 6649 country 6650 pop', 'motown 6651 rock 6652 pop', 'rock', 'funk rock', 'psychedelic soul 6653 pop', 'traducción al español 6654 country', 'folk 6655 rock 6656 rock', 'pop 6657 pop', 'seventies', 'folk rock 6658 rap 6659 pop 6660 rap 6661 pop 6662 rap 6663 rock 6664 rock 6665 pop 6666 rock', 'folk rock', 'seventies', 'gospel', 'protest songs', 'singer-songwriter', 'folk 6667 r&b', 'soul 6668 r&b', 'soul', 'funk 6669 rap 6670 rock 6671 rock 6672 rock', 'psychedelic rock', 'psychedelic', 'hard rock 6673 r&b', 'soul', 'cover 6674 pop 6675 country', 'rock 6676 r&b 6677 rap', 'nerdcore 6678 pop 6679 r&b', 'christian r&b', 'christian 6680 pop', 'r&b', 'blues', 'singer-songwriter', 'jazz fusion', 'motown', 'soul 6681 pop', 'cover 6682 pop 6683 rock', 'pop 6684 r&b', 'soul 6685 rock 6686 rock 6687 pop 6688 r&b 6689 rock', 'blues 6690 r&b', 'pop', 'motown', 'soul pop', 'soul 6691 rock 6692 pop 6693 r&b', 'seventies', 'disco', 'funk 6694 rock', 'jazz rock', 'jazz fusion', 'latin rock 6695 pop 6696 pop 6697 pop 6698 pop', 'motown 6699 rock', 'folk rock', 'americana', 'roots 6700 r&b', 'seventies', 'stax', 'soul 6701 pop 6702 pop 6703 pop', 'folk', 'pop country 6704 pop 6705 pop 6706 r&b', 'soul 6707 rock', 'seventies', 'singer-songwriter', 'adult contemporary', 'easy listening', 'ballad', 'pop-rock', 'yacht rock 6708 pop 6709 country 6710 rock 6711 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 6712 pop 6713 rock', 'cinematic', 'orchestral', 'symphonic rock', 'progressive rock 6714 pop', 'r&b', 'funk', 'soul pop', 'soul 6715 pop 6716 rock', 'r&b', 'pop', 'easy listening', 'seventies', 'folk pop', 'folk', 'singer-songwriter', 'pop-rock', 'acoustic', 'soul pop', 'soul 6717 pop', 'folk rock 6718 r&b', 'pop', 'seventies', 'soul', 'soul pop', 'motown 6719 rock 6720 pop 6721 rap', 'horrorcore', 'hardcore hip-hop', 'hip-hop', 'producer 6722 pop 6723 r&b', 'pop', 'seventies', 'funk', 'psychedelic', 'soul', 'soul pop 6724 r&b', 'motown', 'soul 6725 country 6726 r&b', 'pop', 'motown', 'funk', 'psychedelic', 'soul', 'soul pop 6727 pop 6728 pop', 'ballad', 'orchestral', 'easy listening', 'soul', 'soul pop', 'blue-eyed soul', 'seventies', 'pop-rock 6729 pop 6730 r&b', 'seventies', 'motown', 'soul 6731 country', 'folk', 'folk rock', 'singer-songwriter', 'seventies 6732 pop 6733 rock', 'dark pop', 'seventies', 'hard rock', 'folk rock', 'blues rock', 'progressive rock', 'art rock 6734 r&b', 'soul 6735 pop 6736 pop 6737 r&b', 'soul 6738 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 6739 pop 6740 pop 6741 rock', 'country', 'pop-rock', 'pop country', 'singer-songwriter', 'protest songs', 'seventies', 'folk 6742 r&b', 'soul 6743 pop 6744 pop 6745 rap 6746 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 6747 r&b', 'pop', 'soul', 'motown 6748 country 6749 pop 6750 r&b', 'soul 6751 rock 6752 rock 6753 rock 6754 pop 6755 pop', 'r&b', 'funk', 'soul', 'soul pop 6756 rock', 'motown 6757 rock', 'gospel', 'christian rock 6758 pop', 'r&b', 'ballad', 'seventies', 'soul pop', 'soul 6759 country 6760 pop 6761 rock', 'country', 'seventies', 'psychedelic', 'blues', 'blues rock', 'folk rock', 'psychedelic rock', 'folk 6762 rock 6763 r&b 6764 pop 6765 rock 6766 pop', 'tv', 'commercial', 'seventies 6767 r&b', 'singer-songwriter', 'adult contemporary', 'soul pop', 'seventies', 'soul 6768 rock', 'power pop', 'ballad', 'singer-songwriter', 'british rock 6769 pop', 'r&b', 'soul', 'cover 6770 pop 6771 pop 6772 rock 6773 pop 6774 pop 6775 pop 6776 pop 6777 rock', 'pop', 'soft rock', 'pop-rock', 'folk rock', 'seventies', 'singer-songwriter 6778 r&b', 'pop', 'soul', 'seventies', 'motown 6779 rap 6780 pop 6781 r&b', 'soul 6782 r&b 6783 pop 6784 rap 6785 r&b', 'pop', 'soul 6786 pop 6787 rap 6788 pop 6789 pop', 'rock', 'piano rock', 'baroque pop', 'symphonic rock', 'art rock', 'uk', 'progressive rock', 'orchestral', 'ballad', 'seventies', 'piano', 'pop-rock', 'singer-songwriter', 'gospel 6790 pop', 'motown 6791 r&b', 'motown', 'soul 6792 rock 6793 country 6794 r&b 6795 pop 6796 pop', 'ballad 6797 rock', 'pop', 'ballad', 'piano', 'seventies', 'soft rock', 'orchestral', 'cover', 'pop-rock 6798 rock', 'heavy metal', 'metal', 'blues', 'british rock', 'hard rock', 'seventies', 'album-oriented rock (aor) 6799 r&b', 'soul 6800 country', 'rock', 'folk 6801 r&b', 'pop', 'soul', 'soul pop 6802 rock', 'hard rock 6803 pop 6804 rock 6805 rap 6806 rock', 'british rock', 'seventies', 'uk', 'hard rock 6807 pop 6808 rock', 'glam rock 6809 pop 6810 pop 6811 country', 'rock 6812 pop 6813 r&b 6814 rap 6815 r&b', 'pop', 'motown', 'soul', 'soul pop 6816 rock 6817 r&b', 'soul 6818 pop', 'soft rock', 'pop-rock', 'easy listening', 'adult contemporary', 'ballad', 'seventies 6819 pop', 'r&b', 'soul', 'soul pop 6820 rap 6821 rap', 'detroit', 'jazz rap', 'underground hip-hop', 'gangsta rap 6822 rap', 'em português 6823 rock', 'pop', 'bubblegum pop', 'seventies', 'pop-rock 6824 pop 6825 pop 6826 r&b', 'pop', 'cover', 'seventies', 'soul jazz', 'soul', 'soul pop 6827 pop 6828 rap 6829 pop 6830 pop 6831 pop', 'r&b', 'soul', 'funk 6832 pop', 'rap', 'pop rap', 'memes', 'dmv', 'comedy 6833 r&b', 'rock', 'funk', 'soul', 'funk rock', 'seventies 6834 rock', 'pop', 'seventies', 'easy listening', 'adult contemporary', 'yacht rock 6835 rock 6836 r&b', 'pop', 'piano', 'sixties', 'soul pop', 'soul', 'motown 6837 country', 'pop country 6838 rock 6839 rock', 'heavy metal', 'metal', 'hard rock', 'blues rock', 'british rock', 'seventies', 'uk 6840 country', 'rock 6841 pop', 'seventies 6842 pop 6843 rap 6844 pop 6845 rock', 'country', 'blues', 'alternative rock 6846 country 6847 pop 6848 pop 6849 rap', 'alternative', 'emo rap', 'east coast', 'cloud rap', 'trap', 'emo 6850 pop', 'r&b', 'wales', 'uk', 'theme song', 'seventies', 'orchestral', 'soundtrack 6851 country', 'rock', 'seventies', 'easy listening', 'folk rock', 'pop-rock', 'canada', 'adult alternative', 'singer-songwriter 6852 pop 6853 rock', 'pop', 'singer-songwriter', 'reggae', 'pop-rock', 'folk rock 6854 r&b', 'pop', 'funk', 'psychedelic', 'soul', 'soul pop 6855 pop 6856 pop 6857 pop 6858 r&b', 'motown 6859 pop 6860 rap', 'diss track', 'trap', 'hardcore hip-hop', 'beef 6861 rock', 'folk rock 6862 rock 6863 pop 6864 rock', 'pop-rock', 'piano', 'cover', 'uk 6865 rock', 'memes', 'seventies', 'anime', 'progressive rock 6866 pop 6867 pop 6868 rap 6869 pop 6870 country 6871 pop', 'ballad', 'orchestral', 'easy listening', 'soul', 'soul pop', 'blue-eyed soul', 'seventies', 'pop-rock 6872 rock', 'yacht rock', 'seventies', 'soft rock', 'folk rock 6873 rap', 'horrorcore 6874 rap', 'freestyle', 'french rap', 'france 6875 pop 6876 pop 6877 pop 6878 pop 6879 pop 6880 pop 6881 r&b', 'soul', 'stax 6882 r&b', 'soul', 'stax 6883 pop 6884 rock', 'seventies', 'ballad', 'motown 6885 pop 6886 r&b', 'motown 6887 r&b 6888 pop 6889 pop 6890 pop 6891 r&b', 'soul', 'funk 6892 r&b 6893 pop 6894 rap 6895 r&b', 'pop', 'soul', 'motown 6896 pop 6897 pop', 'seventies 6898 pop 6899 rock 6900 pop', 'rock', 'symphonic rock', 'piano rock', 'neo-psychedelia', 'pop country', 'art rock', 'progressive rock', 'pop-rock', 'orchestral', 'adult contemporary', 'easy listening', 'singer-songwriter', 'baroque pop', 'soundtrack', 'honky tonk', 'soft rock', 'british rock', 'uk', 'seventies', 'piano 6901 country', 'pop 6902 rock', 'rockabilly 6903 pop 6904 rap', 'battle rap 6905 pop 6906 r&b', 'pop', 'seventies', 'cover', 'soul pop', 'motown', 'bubblegum pop', 'soul 6907 rock', 'seventies', 'protest songs', 'british rock 6908 rock 6909 country', 'seventies', 'folk', 'folk rock', 'singer-songwriter', 'cover 6910 r&b', 'pop', 'ballad', 'cover', 'easy listening', 'soul', 'soul pop', 'seventies 6911 rock', 'uk', 'glam rock', 'synth rock', 'seventies 6912 rock', 'gospel', 'symphonic rock', 'space rock', 'downtempo', 'indie rock', 'psychedelic rock 6913 pop', 'seventies 6914 rap 6915 country', 'rock', 'folk rock 6916 rock', 'folk 6917 pop', 'r&b', 'soul', 'soul pop 6918 rock', 'heavy metal', 'metal', 'hard rock', 'seventies', 'blues', 'british rock', 'uk', 'album-oriented rock (aor) 6919 rock', 'seventies', 'easy listening', 'pop-rock', 'singer-songwriter', 'heartland rock', 'piano 6920 rock', 'psychedelic rock', 'hard rock', 'psychedelic 6921 rock 6922 r&b', 'stax', 'soul 6923 pop 6924 rap 6925 r&b', 'blues rock 6926 r&b', 'pop', 'seventies', 'cover', 'motown 6927 rock', 'pop-rock', 'power pop', 'uk', 'seventies 6928 pop 6929 r&b', 'soul 6930 r&b', 'pop', 'ballad', 'seventies', 'soul', 'soul pop 6931 rock', 'pop', 'soft rock', 'pop-rock', 'folk rock', 'seventies', 'singer-songwriter 6932 rock 6933 pop 6934 pop 6935 pop 6936 r&b', 'pop', 'seventies', 'soul', 'soul pop 6937 pop 6938 r&b', 'soul 6939 pop 6940 rock', 'pop', 'piano', 'seventies', 'folk', 'gospel 6941 country 6942 country 6943 pop', 'rock', 'uk', 'singer-songwriter', 'eighties 6944 pop 6945 pop 6946 r&b', 'pop', 'ballad', 'orchestral', 'soul pop', 'seventies', 'soul 6947 country', 'rock', 'folk', 'soft rock', 'yacht rock', 'ballad', 'seventies 6948 r&b', 'seventies', 'stax', 'soul 6949 r&b', 'seventies', 'soul 6950 pop', 'motown 6951 rock', 'easy listening', 'soundtrack', 'seventies', 'piano', 'yacht rock', 'adult alternative', 'adult contemporary', 'power pop', 'singer-songwriter', 'pop-rock 6952 pop', 'seventies', 'soft rock', 'easy listening 6953 rock', 'pop', 'singer-songwriter', 'folk rock', 'folk', 'pop-rock', 'seventies 6954 pop 6955 r&b 6956 rock', 'folk 6957 pop 6958 rock', 'motown 6959 rock', 'pop', 'seventies', 'yacht rock 6960 rock', 'pop', 'bay area', 'eighties', 'seventies', 'psychedelic rock', 'psychedelic', 'americana', 'american folk', 'folk rock', 'folk', 'blues rock', 'blues', 'electric blues', 'pop-rock 6961 rock', 'piano rock', 'singer-songwriter', 'piano', 'baroque pop', 'british rock', 'seventies', 'art pop', 'pop-rock', 'uk', 'ballad', 'glam rock 6962 pop', 'retro', 'seventies', 'motown', 'bubblegum pop', 'soul 6963 rock', 'glam rock 6964 r&b', 'pop', 'funk', 'psychedelic', 'soul', 'soul pop 6965 pop', 'rock', 'seventies', 'soft rock 6966 r&b', 'rock', 'stax', 'soul 6967 r&b', 'rock', 'soul pop', 'adult contemporary', 'easy listening', 'singer-songwriter', 'protest songs', 'race / ethnicity', 'seventies', 'soul 6968 pop 6969 pop 6970 pop 6971 rock 6972 rock 6973 pop 6974 rock', 'album-oriented rock (aor)', 'adult alternative', 'blues rock', 'piano', 'seventies 6975 rock', 'canada', 'ballad', 'seventies', 'singer-songwriter 6976 pop', 'soft rock', 'pop-rock', 'adult contemporary', 'easy listening', 'seventies 6977 rock', 'southern rock', 'blues rock 6978 rock 6979 rock 6980 pop 6981 pop 6982 pop 6983 pop 6984 pop 6985 pop 6986 rock 6987 rock 6988 rock 6989 rock', 'motown', 'girl group 6990 rap 6991 pop 6992 rock 6993 pop', 'r&b 6994 country', 'rock 6995 pop 6996 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 6997 r&b', 'soul', 'funk 6998 r&b 6999 pop 7000 rap 7001 country', 'gospel 7002 r&b', 'soul', 'stax 7003 rock', 'americana', 'soft rock', 'seventies', 'easy listening', 'adult contemporary', 'piano', 'pop-rock', 'ballad 7004 pop 7005 pop', 'motown 7006 pop', 'seventies 7007 rock 7008 pop 7009 rock 7010 pop', 'r&b', 'seventies', 'singer-songwriter', 'funk', 'motown', 'soul pop', 'soul 7011 pop 7012 pop 7013 rock', 'country', 'blues 7014 pop', 'soul 7015 r&b', 'soul', 'stax 7016 rock 7017 r&b', 'pop', 'seventies', 'soul pop', 'motown', 'soul', 'bubblegum pop 7018 pop 7019 pop 7020 rock', 'progressive rock 7021 pop', 'soul 7022 r&b', 'soul 7023 pop 7024 rock 7025 rock', 'folk 7026 pop 7027 r&b', 'soul', 'soul pop', 'funk-pop', 'jazz fusion', 'funk 7028 r&b', 'soul pop', 'soul 7029 r&b 7030 pop', 'r&b', 'soul', 'soul pop 7031 rock', 'country', 'seventies', 'pop-rock', 'soft rock', 'yacht rock', 'singer-songwriter 7032 rock', 'seventies', 'glam rock', 'hard rock 7033 pop 7034 country', 'pop country 7035 pop 7036 pop', 'r&b', 'soul pop', 'soul 7037 pop 7038 pop 7039 pop', 'motown 7040 rock 7041 pop 7042 pop 7043 pop 7044 r&b', 'soul', 'motown 7045 pop 7046 pop', 'france 7047 pop 7048 pop 7049 rock', 'pop', 'soft rock', 'seventies', 'yacht rock 7050 pop 7051 rock', 'progressive rock', 'hard rock', 'seventies 7052 pop 7053 pop 7054 pop', 'pop-rock', 'piano', 'ireland', 'soft rock', 'singer-songwriter', 'soundtrack', 'adult contemporary', 'easy listening', 'seventies 7055 pop 7056 rock', 'pop 7057 rap', 'italy', 'battle rap 7058 rock', 'seventies', 'heartland rock', 'roots 7059 pop 7060 pop 7061 r&b', 'pop', 'soul', 'motown 7062 pop', 'r&b', 'soul', 'soul pop', 'motown 7063 pop 7064 pop 7065 pop 7066 rock', 'australia', 'singer-songwriter', 'feminism', 'seventies 7067 rock', 'seventies', 'singer-songwriter', 'folk rock 7068 pop 7069 rock 7070 r&b', 'soul 7071 rock 7072 r&b', 'soul 7073 rock', 'pop', 'power pop', 'seventies', 'pop-rock 7074 country', 'seventies 7075 r&b', 'seventies', 'psychedelic soul', 'motown', 'psychedelic', 'soul 7076 rock', 'pop', 'album-oriented rock (aor)', 'americana', 'soul pop', 'soul', 'hardcore', 'garage rock', 'blues rock', 'blues', 'seventies', 'cover', 'heartland rock', 'hard rock', 'psychedelic rock', 'psychedelic', 'pop-rock 7077 pop', 'brill building 7078 rock', 'space rock', 'singer-songwriter', 'uk', 'seventies', 'art rock', 'pop-rock', 'baroque pop', 'glam rock 7079 r&b', 'pop', 'yacht rock', 'seventies', 'soul', 'soul pop 7080 rock', 'pop', 'singer-songwriter', 'pop-rock', 'folk', 'folk rock 7081 r&b', 'rock 7082 pop 7083 pop 7084 pop 7085 r&b', 'pop', 'ballad', 'seventies', 'soul', 'soul pop 7086 pop 7087 pop', 'soft rock', 'pop-rock', 'adult contemporary', 'easy listening', 'seventies 7088 rock 7089 rock 7090 r&b', 'pop', 'seventies', 'motown', 'soul pop', 'soul', 'bubblegum pop 7091 pop 7092 pop 7093 r&b', 'pop', 'seventies', 'soul pop', 'soul 7094 pop 7095 pop 7096 rock 7097 rock 7098 r&b', 'seventies', 'soul 7099 pop 7100 pop 7101 pop 7102 r&b 7103 rock', 'country', 'soul 7104 pop 7105 rock', 'seventies', 'singer-songwriter', 'adult contemporary', 'yacht rock', 'pop-rock 7106 rock', 'hard rock', 'progressive rock 7107 rock 7108 pop 7109 pop 7110 pop', 'seventies', 'power pop', 'singer-songwriter 7111 rock 7112 rock', 'soft rock', 'adult contemporary', 'easy listening', 'seventies', 'yacht rock 7113 r&b', 'soul', 'stax', 'seventies 7114 pop 7115 r&b', 'soul 7116 pop', 'motown 7117 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 7118 r&b', 'pop', 'ballad', 'seventies', 'soundtrack', 'soul', 'soul pop', 'motown 7119 pop 7120 pop 7121 country 7122 rock', 'seventies 7123 rock', 'baroque pop', 'symphonic rock', 'progressive rock', 'orchestral', 'british rock', 'uk', 'sixties', 'singer-songwriter', 'ballad', 'psychedelic rock 7124 rock', 'pop', 'seventies', 'soft rock', 'folk rock', 'pop-rock 7125 pop', 'rock', 'singer-songwriter', 'pop-rock', 'piano 7126 pop 7127 rock 7128 country', 'rock', 'southern rock 7129 rap', 'battle rap 7130 pop 7131 pop', 'christian', 'singer-songwriter 7132 pop 7133 rock 7134 rock', 'cover', 'seventies 7135 r&b', 'soul 7136 pop 7137 r&b', 'rock', 'seventies 7138 rock', 'pop 7139 pop 7140 rock', 'folk rock', 'glam rock', 'british rock', 'seventies', 'uk 7141 rock', 'uk', 'seventies', 'art rock', 'progressive rock 7142 country 7143 r&b', 'soul', 'funk 7144 rock 7145 pop 7146 pop 7147 rock 7148 r&b', 'pop', 'producer', 'soul', 'soul pop', 'screen', 'funk 7149 pop 7150 r&b', 'soul 7151 r&b 7152 pop 7153 pop 7154 country', 'rock', 'singer-songwriter', 'seventies 7155 pop 7156 pop', 'motown 7157 r&b', 'pop', 'yacht rock', 'seventies', 'easy listening', 'singer-songwriter', 'adult contemporary', 'soundtrack', 'soul pop', 'reggae 7158 pop', 'rock', 'soft rock', 'seventies', 'singer-songwriter', 'yacht rock', 'easy listening', 'adult contemporary', 'pop-rock 7159 pop 7160 country', 'rock 7161 rap', 'posse cut', 'east coast', 'türkiye', 'west coast', 'turkey', 'underground hip-hop', 'türkçe sözlü rap', 'deutschland', 'uk', 'danmark', 'world music', 'scandinavia', 'deutschsprachiger rap 7162 pop', 'seventies 7163 pop 7164 r&b', 'soul', 'funk 7165 pop 7166 r&b', 'motown 7167 rock', 'pop 7168 pop 7169 pop 7170 pop 7171 pop', 'r&b', 'seventies', 'singer-songwriter', 'soul pop', 'funk', 'motown', 'soul 7172 pop 7173 pop 7174 rock 7175 rock', 'seventies', 'british rock', 'glam rock 7176 pop', 'seventies 7177 rock 7178 rap 7179 pop 7180 pop 7181 pop 7182 rock', 'singer-songwriter 7183 r&b', 'soul', 'sixties 7184 r&b', 'soul 7185 rock 7186 r&b 7187 r&b', 'soul 7188 country 7189 pop', 'glam rock', 'hard rock 7190 r&b', 'soul 7191 pop 7192 rock 7193 rock 7194 pop', 'motown 7195 pop 7196 pop 7197 pop', 'soul 7198 pop 7199 rock 7200 rock', 'pop 7201 pop', 'seventies', 'ballad', 'singer-songwriter', 'folk rock 7202 r&b', 'soul', 'funk', 'psychedelic soul', 'seventies', 'motown 7203 r&b', 'funk', 'soul 7204 rock', 'blues rock 7205 rock 7206 pop 7207 pop 7208 rock', 'soft rock', 'seventies', 'folk rock', 'yacht rock 7209 rock', 'soft rock', 'singer-songwriter', 'ballad', 'yacht rock', 'seventies 7210 r&b', 'pop', 'soul 7211 pop 7212 rock', 'folk 7213 pop 7214 r&b', 'pop', 'soul 7215 rock 7216 pop 7217 country', 'r&b', 'pop', 'cover', 'ballad', 'soul', 'soul pop', 'pop country 7218 pop 7219 pop 7220 pop', 'motown 7221 rock', 'yacht rock', 'jazz fusion', 'seventies', 'soft rock', 'pop-rock 7222 r&b', 'soul 7223 pop 7224 r&b', 'retro', 'seventies', 'motown', 'soul 7225 rock', 'cover', 'pop-rock', 'seventies', 'yacht rock 7226 pop', 'parody', 'comedy', 'youtube 7227 rock', 'glam rock 7228 pop 7229 rock', 'glam rock 7230 r&b', 'soft rock', 'ballad', 'seventies', 'soul 7231 rock', 'progressive rock 7232 pop', 'comedy 7233 pop 7234 rap', 'gangsta rap 7235 r&b', 'soul 7236 pop', 'motown 7237 pop 7238 pop 7239 pop 7240 pop', 'rock', 'yacht rock', 'ballad', 'adult contemporary', 'pop-rock 7241 pop 7242 r&b', 'seventies', 'disco', 'soul', 'soul pop 7243 r&b', 'rap', 'canada 7244 rock 7245 rock', 'seventies', 'singer-songwriter', 'yacht rock 7246 pop 7247 rock', 'pop', 'seventies', 'pop-rock', 'folk', 'singer-songwriter', 'folk rock 7248 r&b', 'soul 7249 rock 7250 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 7251 rock', 'uk 7252 pop', 'r&b', 'seventies', 'singer-songwriter', 'psychedelic soul', 'soul pop', 'motown', 'soul', 'funk 7253 r&b', 'soul 7254 rap', 'jazz rap', 'east coast 7255 pop 7256 pop 7257 rap 7258 rock', 'hard rock', 'glam rock 7259 rock', 'singer-songwriter', 'jazz', 'album-oriented rock (aor)', 'adult alternative', 'yacht rock', 'seventies', 'pop-rock', 'latin rock', 'funk rock', 'jazz fusion 7260 pop 7261 rock', 'power pop 7262 country', 'rock', 'folk rock', 'yacht rock', 'ballad', 'seventies', 'heartland rock', 'singer-songwriter', 'folk 7263 pop 7264 pop 7265 pop 7266 rock', 'british rock', 'uk', 'seventies', 'hard rock', 'blues rock', 'glam rock 7267 r&b', 'soul', 'jazz 7268 pop 7269 rock', 'adult alternative', 'ballad', 'folk rock', 'folk 7270 pop 7271 rap', 'conscious hip-hop', 'trap 7272 rock', 'country 7273 rock 7274 rock 7275 r&b', 'soul 7276 country 7277 rap 7278 rap 7279 rock', 'blues rock 7280 pop 7281 r&b', 'pop', 'soul', 'funk', 'soul pop', 'funk-pop 7282 pop', 'rock', 'piano', 'seventies', 'soft rock', 'ballad', 'singer-songwriter', 'pop-rock', 'yacht rock 7283 rock 7284 pop', 'rock', 'uk', 'seventies', 'singer-songwriter', 'pop-rock', 'glam rock', 'piano 7285 pop', 'soul 7286 pop 7287 rock 7288 country 7289 rock', 'country', 'list', 'blues 7290 r&b', 'motown 7291 pop', 'r&b', 'motown 7292 pop 7293 pop 7294 pop', 'r&b', 'ballad', 'soul', 'soul pop', 'funk', 'funk-pop', 'seventies 7295 r&b', 'rock', 'jazz-funk', 'jazz fusion', 'soul', 'soundtrack', 'motown 7296 pop', 'soundtrack 7297 r&b', 'pop', 'soul', 'motown 7298 pop 7299 pop 7300 pop 7301 rock', 'seventies', 'funk', 'reggae rock', 'reggae', 'ska', 'blues', 'hard rock', 'uk', 'british rock', 'singer-songwriter 7302 pop 7303 pop 7304 pop 7305 pop 7306 pop 7307 pop 7308 pop 7309 r&b', 'pop', 'soul', 'funk', 'soul pop', 'funk-pop 7310 rock', 'soft rock', 'adult contemporary', 'pop-rock 7311 r&b', 'soul 7312 pop 7313 pop 7314 pop 7315 country 7316 pop 7317 pop 7318 country', 'cover 7319 pop 7320 pop', 'uk drill 7321 pop 7322 country 7323 rap', 'battle rap 7324 rap 7325 pop 7326 pop 7327 r&b', 'motown 7328 pop 7329 pop', 'r&b', 'seventies', 'soul', 'soul pop', 'disco 7330 rock', 'pop', 'yacht rock', 'gospel 7331 pop 7332 rock', 'seventies', 'folk 7333 r&b', 'soul', 'sixties 7334 rap 7335 pop 7336 r&b', 'ballad', 'seventies', 'soul 7337 rock', 'space rock', 'sixties', 'uk', 'singer-songwriter', 'psychedelic', 'progressive rock', 'psychedelic rock 7338 rock', 'pop 7339 rap', 'freestyle', 'covid-19', 'charity 7340 pop 7341 r&b 7342 country', 'comedy', 'folk 7343 rock 7344 rock', 'glam rock', 'uk', 'british rock', 'seventies 7345 pop', 'soul pop', 'soul', 'ballad', 'funk-pop', 'funk 7346 rock', 'r&b', 'pop', 'funk rock', 'funk', 'motown 7347 pop 7348 rock 7349 pop 7350 pop 7351 rock', 'soft rock 7352 pop', 'folk rock 7353 pop 7354 pop', 'r&b', 'adult contemporary', 'ballad', 'cover', 'easy listening', 'seventies', 'soul', 'soul pop', 'soundtrack 7355 r&b', 'funk', 'soul 7356 rock 7357 pop 7358 country', 'rock', 'pop', 'seventies', 'blues rock', 'folk rock', 'folk', 'psychedelic', 'psychedelic rock 7359 r&b', 'soul 7360 pop 7361 r&b', 'soul 7362 pop 7363 pop 7364 r&b', 'pop', 'soul 7365 pop 7366 pop 7367 pop 7368 r&b 7369 pop', 'ballad', 'seventies 7370 r&b', 'pop', 'soul pop', 'soul 7371 pop 7372 pop', 'seventies 7373 pop 7374 rap', 'hardcore hip-hop', 'east coast', 'west coast', 'a cappella', 'freestyle', 'cypher', 'shadyxv 7375 pop 7376 country 7377 pop 7378 pop 7379 rock', 'lgbtq+', 'seventies', 'soundtrack', 'singer-songwriter', 'glam rock', 'alternative rock', 'east coast', 'adult alternative', 'jazz fusion 7380 rock 7381 rock', 'pop', 'ballad', 'easy listening', 'pop-rock', 'seventies', 'soft rock', 'yacht rock 7382 pop', 'seventies', 'tv', "children's music", 'cover 7383 r&b', 'motown', 'funk', 'psychedelic soul', 'psychedelic', 'soul 7384 country 7385 r&b', 'rock', 'seventies', 'yacht rock', 'soul pop', 'soul', 'ballad', 'pop-rock 7386 pop 7387 pop', 'yacht rock', 'seventies 7388 r&b', 'funk 7389 rap 7390 rap 7391 country 7392 r&b 7393 country', 'rock 7394 rock', 'soul 7395 pop 7396 pop 7397 pop 7398 country', 'rock', 'soundtrack', 'folk rock', 'soft rock', 'scotland', 'uk', 'seventies 7399 r&b', 'soul 7400 rock 7401 pop 7402 rock', 'progressive rock 7403 rock 7404 pop 7405 rock', 'adult contemporary', 'easy listening', 'album-oriented rock (aor)', 'seventies', 'pop-rock', 'yacht rock', 'jazz fusion 7406 rock', 'uk', 'blues rock 7407 r&b', 'soundtrack', 'soul', 'funk', 'seventies 7408 pop', 'hard rock', 'glam rock 7409 country 7410 pop 7411 rap 7412 pop', 'r&b', 'seventies', 'motown', 'singer-songwriter', 'funk', 'soul pop', 'soul 7413 rap 7414 pop', 'r&b', 'retro', 'seventies', 'motown', 'funk', 'disco', 'soul pop', 'soul 7415 rock', 'nineties', 'british rock 7416 country 7417 pop 7418 pop 7419 rock', 'power pop 7420 rap', 'trap', 'drill 7421 r&b', 'pop 7422 rock 7423 country', 'rock 7424 pop', 'soundtrack', 'cover 7425 pop 7426 pop 7427 country', 'cover 7428 pop 7429 pop 7430 r&b 7431 pop 7432 pop', 'rock', 'uk', 'soft rock', 'singer-songwriter', 'seventies', 'easy listening', 'ballad', 'adult contemporary', 'pop-rock 7433 pop 7434 pop 7435 rap 7436 r&b 7437 r&b', 'funk', 'soul 7438 pop 7439 country', 'gospel 7440 rock', 'uk', 'singer-songwriter', 'hard rock', 'seventies 7441 rap', 'battle rap 7442 r&b', 'rock', 'soundtrack', 'singer-songwriter', 'funk rock', 'new orleans r&b', 'funk 7443 pop 7444 rock', 'seventies 7445 pop 7446 pop 7447 pop', 'r&b', 'seventies', 'orchestral', 'ballad', 'soul', 'funk', 'disco 7448 r&b', 'soul pop', 'soul 7449 pop 7450 pop 7451 rap', 'battle rap 7452 pop', 'soundtrack 7453 rock', 'pop', 'pop-rock 7454 pop', 'blues', 'folk rock 7455 rock 7456 r&b', 'soul 7457 r&b', 'soul pop', 'adult contemporary', 'easy listening', 'seventies', 'soul 7458 pop 7459 r&b', 'soul 7460 pop 7461 rock 7462 rap', 'canada 7463 r&b', 'soul 7464 rock', 'psychedelic rock', 'choral music', 'british rock', 'uk', 'sixties', 'gospel', 'blues rock', 'singer-songwriter 7465 pop', 'motown 7466 pop 7467 pop 7468 pop 7469 rock 7470 pop 7471 pop 7472 country 7473 pop 7474 pop 7475 pop 7476 r&b', 'pop', 'cover', 'seventies', 'motown', 'soul 7477 r&b', 'funk', 'stax', 'soul 7478 pop 7479 r&b', 'pop', 'yacht rock', 'ballad', 'soul 7480 pop 7481 pop 7482 rock', 'pop', 'seventies', 'yacht rock', 'singer-songwriter', 'adult contemporary', 'pop-rock 7483 pop', 'jump blues 7484 pop 7485 pop 7486 pop 7487 pop 7488 country 7489 r&b', 'motown', 'soul 7490 rock', 'album-oriented rock (aor)', 'seventies', 'singer-songwriter', 'producer', 'adult alternative', 'british rock', 'uk', 'ballad', 'piano', 'adult contemporary', 'gospel', 'folk rock 7491 rock', 'pop', 'pop-rock 7492 r&b', 'pop', 'soul pop', 'soul 7493 rock', 'pop', 'easy listening', 'adult alternative', 'singer-songwriter 7494 rock', 'jazz rock', 'funk rock', 'british rock', 'seventies', 'art rock', 'uk', 'progressive rock', 'blues rock 7495 r&b', 'soul', 'seventies 7496 r&b', 'rock 7497 r&b', 'soul 7498 pop 7499 country 7500 rock', 'seventies', 'british rock', 'uk', 'heavy metal', 'metal', 'hard rock 7501 rock', 'country', 'folk', 'folk rock 7502 country 7503 country 7504 rock', 'seventies', 'glam rock', 'hard rock 7505 pop 7506 pop', 'r&b', 'funk', 'soul', 'funk-pop', 'soul pop 7507 r&b', 'seventies 7508 rock', 'pop 7509 r&b', 'seventies', 'motown 7510 pop 7511 r&b 7512 pop 7513 pop 7514 pop 7515 r&b', 'motown', 'funk', 'psychedelic soul', 'psychedelic', 'soul 7516 r&b 7517 r&b', 'jazz-funk', 'jazz fusion', 'jazz 7518 rap 7519 pop', 'seventies', 'disco', 'soul', 'funk 7520 country', 'pop country', 'singer-songwriter 7521 pop 7522 pop 7523 pop 7524 pop 7525 pop 7526 country 7527 rap 7528 rock', 'eighties', 'pop-rock', 'singer-songwriter', 'protest songs 7529 pop 7530 rock', 'easy listening', 'pop-rock', 'soft rock', 'seventies', 'jazz fusion 7531 pop 7532 pop 7533 pop 7534 r&b', 'soul 7535 rock 7536 pop 7537 rock', 'uk', 'seventies', 'heavy metal', 'folk rock', 'hard rock 7538 pop', 'seventies', 'disco', 'soul', 'funk 7539 country', 'rock', 'soft rock', 'yacht rock', 'pop-rock 7540 pop 7541 country 7542 pop', 'r&b', 'seventies', 'funk', 'psychedelic', 'soul', 'soul pop 7543 country 7544 r&b 7545 pop 7546 pop 7547 r&b 7548 rock', 'piano rock', 'art pop', 'symphonic rock', 'progressive rock', 'orchestral', 'theme song', 'piano', 'album-oriented rock (aor)', 'seventies', 'british rock', 'uk', 'art rock', 'singer-songwriter', 'soundtrack 7549 r&b', 'pop', 'soul pop', 'soul 7550 r&b', 'soul 7551 r&b', 'pop', 'seventies', 'soul pop', 'soul 7552 pop 7553 pop 7554 rock 7555 r&b 7556 pop 7557 country 7558 pop 7559 pop 7560 pop 7561 rock 7562 r&b', 'motown', 'ballad', 'singer-songwriter', 'soundtrack', 'seventies 7563 pop 7564 r&b', 'rock 7565 pop 7566 r&b 7567 r&b 7568 r&b', 'seventies', 'funk', 'soul 7569 r&b', 'soul 7570 pop 7571 rock 7572 rock', 'pop 7573 country', 'pop', 'seventies 7574 rock 7575 r&b', 'pop', 'soundtrack', 'theme song', 'ballad', 'soul', 'soul pop', 'funk', 'funk-pop', 'seventies 7576 r&b', 'soul 7577 rock 7578 country 7579 rock', 'pop-rock', 'folk', 'folk rock 7580 rock', 'piano rock', 'british rock', 'proto-punk', 'seventies', 'video game', 'singer-songwriter', 'piano', 'uk', 'hard rock', 'glam rock 7581 pop 7582 rock 7583 pop', 'seventies 7584 r&b', 'pop', 'motown', 'soul 7585 r&b', 'pop', 'seventies', 'orchestral', 'ballad', 'downtempo', 'soul', 'funk 7586 r&b', 'seventies', 'soul', 'funk 7587 r&b', 'soul 7588 pop 7589 country', 'ballad', 'seventies 7590 rock 7591 pop 7592 pop 7593 rock', 'uk 7594 pop 7595 r&b', 'soul pop', 'soul 7596 pop 7597 pop 7598 rock 7599 r&b 7600 r&b', 'soul 7601 r&b', 'motown', 'soul 7602 pop', 'r&b', 'seventies', 'singer-songwriter', 'psychedelic soul', 'soul pop', 'motown', 'funk', 'soul 7603 rock 7604 rock', 'country', 'folk 7605 r&b', 'pop', 'soundtrack', 'soul', 'funk', 'soul pop', 'funk-pop 7606 r&b', 'soul', 'funk 7607 r&b', 'funk', 'soul 7608 country 7609 pop 7610 pop 7611 pop 7612 rock 7613 country', 'rock', 'seventies', 'southern rock 7614 country 7615 rock', 'country 7616 pop 7617 pop 7618 country 7619 rap 7620 rock', 'motown', 'soul', 'seventies 7621 r&b', 'pop', 'seventies', 'motown', 'psychedelic', 'disco', 'soul pop', 'funk', 'soul 7622 country', 'rock', 'folk rock', 'easy listening', 'seventies 7623 pop 7624 rock 7625 rap 7626 country 7627 rap 7628 pop', 'cover 7629 r&b 7630 pop', 'rock', 'uk', 'pop-rock', 'adult contemporary', 'easy listening', 'seventies', 'piano', 'ballad', 'singer-songwriter 7631 pop', 'r&b', 'ballad', 'soundtrack', 'orchestral', 'soul pop', 'funk', 'funk-pop', 'seventies', 'soul 7632 pop 7633 pop 7634 pop 7635 r&b', 'rock 7636 r&b', 'funk 7637 pop', 'seventies', 'orchestral', 'piano', 'ballad 7638 country', 'rock 7639 r&b', 'soul 7640 pop 7641 pop', 'country 7642 pop 7643 pop 7644 rock 7645 country 7646 pop 7647 rock', 'pop', 'seventies', 'yacht rock', 'baroque pop', 'soft rock', 'singer-songwriter', 'adult contemporary', 'ballad', 'pop-rock 7648 r&b', 'pop', 'seventies', 'soul', 'soul jazz', 'soul pop 7649 r&b', 'pop', 'soul', 'funk 7650 pop 7651 rap 7652 pop 7653 rock', 'adult contemporary', 'pop-rock', 'ballad', 'soft rock', 'easy listening', 'jazz fusion', 'seventies 7654 country 7655 country 7656 country', 'rock 7657 pop 7658 pop 7659 r&b 7660 pop 7661 pop 7662 pop 7663 r&b', 'pop', 'soul pop', 'soul 7664 rock', 'orchestral', 'soundtrack', 'ballad', 'singer-songwriter', 'seventies 7665 rock', 'folk rock 7666 pop', 'soft rock', 'folk pop', 'adult contemporary', 'easy listening', 'singer-songwriter 7667 r&b 7668 pop 7669 pop', 'rock', 'soft rock', 'adult alternative', 'album-oriented rock (aor)', 'easy listening', 'blue-eyed soul', 'seventies', 'yacht rock', 'soundtrack', 'singer-songwriter', 'power pop', 'piano', 'adult contemporary', 'ballad', 'pop-rock 7670 pop 7671 r&b', 'soul 7672 pop 7673 r&b', 'soul 7674 pop 7675 pop 7676 pop 7677 country 7678 pop 7679 pop 7680 rock', 'uk', 'seventies', 'reggae rock', 'pop-rock', 'ska', 'reggae', 'hard rock 7681 rock', 'singer-songwriter', 'seventies', 'heartland rock', 'blues rock', 'funk rock', 'funk 7682 rock', 'blues rock', 'seventies', 'ballad', 'hard rock 7683 r&b', 'seventies', 'funk', 'soul 7684 pop 7685 rock', 'r&b', 'seventies', 'yacht rock 7686 rock 7687 pop', 'rock', 'soft rock', 'adult contemporary', 'seventies', 'art rock', 'easy listening', 'ballad', 'piano', 'pop-rock', 'singer-songwriter', 'baroque pop', 'uk 7688 rock 7689 pop 7690 pop', 'en español 7691 pop 7692 pop', 'funk', 'soul 7693 pop 7694 rock 7695 pop 7696 pop 7697 pop', 'r&b', 'seventies', 'orchestral', 'ballad', 'funk', 'soul 7698 rock 7699 r&b', 'soul', 'seventies 7700 pop', 'seventies', 'folk 7701 pop 7702 pop 7703 r&b 7704 pop 7705 rock 7706 pop', 'italy 7707 pop 7708 pop', 'rock', 'pop-rock', 'seventies', 'uk', 'singer-songwriter', 'british rock 7709 pop', 'r&b', 'album-oriented rock (aor)', 'race / ethnicity', 'civil rights', 'producer', 'seventies', 'singer-songwriter', 'funk', 'motown', 'soul', 'soul pop 7710 pop 7711 r&b 7712 pop 7713 rock', 'uk', 'glam rock', 'psychedelic rock', 'psychedelic', 'seventies 7714 pop 7715 rock', 'pop', 'ballad', 'acoustic', 'adult contemporary', 'singer-songwriter', 'easy listening', 'folk', 'seventies', 'folk rock 7716 r&b', 'rock 7717 pop', 'funk 7718 pop 7719 pop 7720 rap 7721 pop 7722 pop 7723 r&b 7724 country 7725 r&b', 'soul', 'soul pop 7726 rock', 'seventies', 'glam rock', 'british rock', 'uk', 'singer-songwriter 7727 r&b', 'pop', 'psychedelic soul', 'funk', 'soul pop', 'soul 7728 r&b', 'pop', 'funk', 'psychedelic', 'soul', 'soul pop 7729 country 7730 pop 7731 pop 7732 rock', 'folk rock', 'americana', 'cover 7733 country', 'outlaw country', 'christmas', 'holiday 7734 r&b', 'soul 7735 pop 7736 rock', 'pop', 'singer-songwriter', 'pop-rock', 'folk rock', 'protest songs', 'folk 7737 rock 7738 pop 7739 rock 7740 r&b', 'pop', 'soul', 'funk', 'soul pop', 'funk-pop 7741 rock', 'ballad 7742 rock', 'pop 7743 pop 7744 r&b', 'pop 7745 rap 7746 rap 7747 country', 'singer-songwriter', 'seventies 7748 pop 7749 r&b 7750 r&b', 'soul', 'funk', 'seventies 7751 pop 7752 rock 7753 pop 7754 rock', 'indie pop', 'indie rock', 'reggae', 'ska 7755 rock', 'folk rock 7756 country', 'cover 7757 pop 7758 pop 7759 pop 7760 pop 7761 r&b', 'pop', 'funk', 'soul', 'soul pop 7762 pop 7763 r&b', 'funk', 'soul 7764 rock', 'pop', 'pop-rock', 'folk', 'seventies', 'singer-songwriter', 'folk rock 7765 pop 7766 pop 7767 r&b', 'pop', 'funk', 'soul', 'soul pop 7768 pop 7769 pop', 'folk rock 7770 rock 7771 pop 7772 pop 7773 r&b', 'funk-pop', 'funk', 'soul 7774 rock', 'pop 7775 r&b', 'soul', 'funk', 'seventies 7776 pop 7777 r&b', 'soul 7778 r&b', 'soul 7779 rock 7780 pop 7781 country 7782 country 7783 rock', 'pop', 'scotland', 'folk rock 7784 rock', 'pop', 'folk 7785 pop 7786 rock 7787 rock', 'pop', 'singer-songwriter', 'native american', 'disco', 'pop-rock', 'funk rock', 'seventies', 'soundtrack 7788 pop', 'en español 7789 country', 'rock 7790 rock', 'easy listening', 'seventies 7791 pop 7792 pop', 'seventies', 'pop-rock 7793 r&b 7794 rock', 'hard rock 7795 r&b', 'soul', 'seventies', 'ballad 7796 pop 7797 country 7798 pop 7799 country', 'rock', 'ballad', 'folk', 'adult contemporary', 'easy listening', 'seventies', 'singer-songwriter 7800 country', 'ballad', 'honky tonk', 'adult contemporary', 'seventies', 'singer-songwriter 7801 pop 7802 r&b', 'soul 7803 r&b', 'soul 7804 rock', 'pop', 'folk 7805 r&b', 'pop 7806 country 7807 pop 7808 r&b', 'soul 7809 r&b 7810 pop 7811 rock', 'hard rock 7812 rap 7813 rock', 'blues rock 7814 rock', 'power pop', 'seventies', 'art rock', 'british rock', 'uk', 'singer-songwriter 7815 country 7816 pop 7817 rap 7818 rock', 'seventies', 'adult contemporary', 'easy listening', 'singer-songwriter', 'yacht rock', 'blue-eyed soul', 'jazz 7819 r&b', 'seventies', 'soul', 'funk 7820 r&b', 'pop', 'soul pop', 'soul', 'funk-pop', 'funk 7821 r&b', 'rock', 'piano rock', 'alternative r&b', 'seventies', 'singer-songwriter', 'pop-rock', 'piano', 'uk', 'glam rock', 'hard rock 7822 pop', 'seventies 7823 rock', 'pop', 'seventies', 'soundtrack', 'adult contemporary', 'cover', 'pop-rock 7824 pop 7825 country 7826 rap 7827 pop 7828 pop 7829 pop 7830 rock 7831 country 7832 pop 7833 rock', 'roots 7834 rock', 'hard rock 7835 pop 7836 r&b', 'pop', 'soul pop', 'soul 7837 r&b', 'soul 7838 pop', 'rock', 'piano rock', 'soft rock', 'singer-songwriter', 'seventies', 'ballad', 'pop-rock', 'piano', 'adult contemporary', 'folk rock 7839 pop 7840 rock', 'pop', 'seventies', 'yacht rock', 'adult contemporary', 'pop-rock 7841 pop', 'jazz-funk', 'soul jazz', 'soul', 'jazz 7842 pop 7843 r&b', 'pop', 'seventies', 'orchestral', 'ballad', 'soul', 'funk', 'disco 7844 pop 7845 rock 7846 pop', 'rock', 'seventies', 'soft rock', 'pop-rock 7847 rock', 'seventies', 'politics', 'singer-songwriter 7848 pop 7849 pop 7850 r&b 7851 rap 7852 rock', 'cover 7853 rock', 'seventies 7854 pop 7855 pop 7856 r&b', 'funk 7857 rap', 'rock', 'eighties', 'alternative rock', 'rap rock', 'funk rock', 'funk 7858 rock 7859 pop 7860 pop', 'r&b', 'seventies', 'motown', 'soul pop', 'disco', 'soul', 'funk 7861 rock', 'jazz fusion', 'easy listening', 'pop-rock', 'soft rock', 'seventies 7862 rock 7863 rock', 'pop', 'folk rock', 'pop-rock', 'seventies', 'singer-songwriter', 'canada', 'folk 7864 pop 7865 pop 7866 r&b', 'pop', 'motown', 'funk', 'soul', 'soul pop 7867 rock', 'retro 7868 rap 7869 r&b', 'soul 7870 pop 7871 pop 7872 r&b 7873 pop 7874 country 7875 rock 7876 pop 7877 pop 7878 r&b', 'rock 7879 r&b', 'pop 7880 pop', 'soundtrack', 'broadway', 'musicals 7881 pop 7882 rock', 'album-oriented rock (aor)', 'southern rock', 'blues rock 7883 rock 7884 pop', 'r&b', 'seventies', 'motown', 'singer-songwriter', 'funk', 'soul pop', 'soul 7885 r&b', 'soul 7886 rock', 'pop', 'seventies', 'singer-songwriter 7887 rock', 'indie rock 7888 pop 7889 rock', 'pop 7890 r&b', 'soul 7891 pop 7892 pop', 'soft rock', 'pop-rock', 'adult contemporary', 'easy listening', 'ballad', 'seventies 7893 pop 7894 pop', 'rock', 'singer-songwriter', 'adult alternative', 'pop-rock 7895 rock', 'yacht rock', 'seventies', 'singer-songwriter 7896 rock 7897 country', 'rock', 'pop', 'australia 7898 r&b', 'pop', 'soundtrack', 'funk', 'soul', 'soul pop 7899 country 7900 pop 7901 rock', 'pop-rock', 'progressive rock', 'album-oriented rock (aor)', 'singer-songwriter', 'seventies', 'blues rock', 'art rock', 'british rock', 'uk', 'funk rock 7902 pop 7903 country', 'cover 7904 r&b 7905 pop 7906 rock 7907 pop 7908 rock', 'yacht rock', 'soft rock', 'cover', 'seventies', 'pop-rock', 'adult contemporary', 'ballad', 'british rock', 'easy listening 7909 rock 7910 r&b 7911 pop 7912 pop 7913 r&b', 'soul 7914 rap 7915 pop', 'seventies', 'bubblegum pop 7916 country 7917 pop 7918 r&b', 'pop', 'soul pop', 'doo-wop 7919 r&b', 'soul 7920 pop 7921 country 7922 pop 7923 country', 'rock 7924 rap 7925 pop 7926 pop 7927 pop 7928 rock', 'singer-songwriter', 'seventies', 'pop-rock', 'jazz fusion', 'yacht rock 7929 r&b', 'rap', 'country', 'pop', 'rock 7930 pop 7931 rap', 'dirty south 7932 rock 7933 pop 7934 rock', 'rockabilly', 'progressive rock', 'blues rock', 'hard rock 7935 pop 7936 pop 7937 rap 7938 country 7939 rock', 'seventies', 'hard rock 7940 pop 7941 pop', 'seventies 7942 pop 7943 pop', 'r&b', 'yacht rock', 'seventies', 'adult contemporary', 'soundtrack', 'disco', 'soul pop', 'soul 7944 pop 7945 pop 7946 rock 7947 rock', 'country 7948 rock 7949 r&b', 'soul 7950 r&b 7951 pop', 'scandipop', 'svensk rock', 'seventies', 'pop-rock', 'scandinavia', 'sverige', 'eurovision 7952 pop 7953 rock', 'proto-punk', 'seventies', 'british rock', 'uk', 'hard rock', 'glam rock 7954 country', 'rock', 'folk rock', 'contemporary folk', 'adult contemporary', 'seventies', 'easy listening', 'acoustic', 'ballad', 'folk', 'singer-songwriter 7955 pop 7956 r&b 7957 pop', 'r&b', 'rock', 'soft rock', 'seventies', 'soul pop', 'adult contemporary', 'yacht rock', 'disco', 'soul 7958 country', 'rock', 'pop', 'soft rock', 'yacht rock 7959 rap 7960 country', 'rock 7961 pop 7962 pop 7963 r&b 7964 country', 'pop 7965 pop 7966 rock 7967 rock', 'glam rock 7968 r&b', 'pop', 'ballad', 'soul pop', 'funk', 'funk-pop', 'seventies', 'soul 7969 pop 7970 r&b', 'funk 7971 country 7972 pop 7973 pop 7974 rap', 'politics', 'history', 'soundtrack', 'broadway', 'musicals 7975 r&b 7976 r&b', 'soul 7977 r&b 7978 rock', 'pop 7979 rock', 'pop', 'proto-punk 7980 pop', 'rock', 'soft rock', 'singer-songwriter', 'ballad', 'seventies', 'piano', 'pop-rock', 'uk 7981 r&b', 'yacht rock', 'smooth jazz', 'soul 7982 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 7983 rock 7984 pop 7985 rock', 'soul', 'funk', 'yacht rock', 'pop-rock', 'soft rock', 'seventies 7986 r&b', 'motown', 'funk', 'psychedelic soul', 'psychedelic', 'soul 7987 pop 7988 r&b', 'rap', 'jazz 7989 pop 7990 pop 7991 pop 7992 pop 7993 country 7994 pop 7995 rock 7996 pop 7997 pop 7998 pop 7999 pop 8000 country 8001 pop', 'seventies', 'soul', 'dance', 'disco 8002 r&b', 'soul 8003 pop 8004 r&b', 'soul 8005 r&b', 'soul 8006 r&b', 'pop', 'funk', 'psychedelic', 'soul', 'soul pop 8007 rock 8008 rock 8009 pop 8010 rock', 'reggae rock', 'blues rock', 'funk rock', 'seventies', 'cover', 'ska', 'reggae 8011 pop 8012 rock 8013 pop', 'r&b', 'funk', 'soul pop', 'soul 8014 rock', 'folk rock', 'singer-songwriter', 'seventies 8015 pop 8016 rock', 'history 8017 pop 8018 rock 8019 pop 8020 pop 8021 pop 8022 pop 8023 pop 8024 pop', 'r&b', 'seventies', 'soul', 'soul pop 8025 pop 8026 rock', 'pop', 'folk pop', 'folk rock', 'pop-rock', 'singer-songwriter', 'seventies', 'canada', 'folk 8027 rap 8028 pop 8029 pop 8030 country', 'rock', 'piano rock', 'blues rock', 'singer-songwriter', 'piano', 'soundtrack', 'seventies', 'southern rock 8031 pop', 'country', 'rock', 'heartland rock', 'piano', 'electric blues', 'blues rock', 'blues', 'hardcore', 'americana', 'roots', 'hard rock', 'garage rock', 'album-oriented rock (aor)', 'pop-rock', 'southern rock', 'rockabilly 8032 pop 8033 r&b', 'seventies', 'funk', 'soul 8034 rap', 'battle rap 8035 pop', 'r&b', 'seventies', 'orchestral', 'ballad', 'disco', 'soul 8036 pop', 'motown 8037 pop', 'rock', 'garage rock', 'blues rock', 'pop-rock', 'live', 'uk', 'hard rock 8038 country 8039 pop 8040 country 8041 pop', 'cover 8042 pop 8043 rock 8044 pop', 'seventies 8045 pop 8046 pop 8047 r&b', 'rap', 'electric blues 8048 pop 8049 rock', 'hard rock', 'blues rock 8050 pop 8051 pop 8052 rock 8053 pop 8054 r&b', 'pop', 'disco', 'soul', 'motown 8055 pop 8056 r&b', 'soul 8057 pop 8058 pop 8059 pop 8060 rap', 'freestyle', 'covid-19', 'charity 8061 pop 8062 rock', 'adult contemporary', 'easy listening', 'soft rock', 'ballad', 'seventies', 'yacht rock', 'pop-rock 8063 pop 8064 rock 8065 pop 8066 r&b', 'soul 8067 country', 'folk 8068 pop', 'r&b', 'cover', 'soul', 'soul pop 8069 r&b', 'rock 8070 pop 8071 r&b', 'funk 8072 rock', 'british rock', 'uk', 'seventies', 'piano', 'disco', 'hard rock', 'glam rock 8073 pop 8074 rock 8075 r&b 8076 r&b 8077 rock 8078 country 8079 rock 8080 pop 8081 pop 8082 pop 8083 pop', 'rock', 'pop-rock 8084 pop', 'rock 8085 country 8086 rap 8087 country', 'pop country', 'singer-songwriter', 'seventies', 'folk rock', 'folk 8088 pop 8089 pop 8090 rock', 'blues 8091 r&b', 'pop', 'seventies', 'funk', 'disco', 'cover', 'soul pop', 'soul 8092 pop 8093 pop 8094 country', 'rock', 'memorial 8095 rock', 'piano', 'seventies', 'singer-songwriter', 'uk 8096 pop', 'r&b 8097 pop', 'r&b', 'funk', 'soul pop', 'soul 8098 pop 8099 r&b 8100 r&b', 'soul', 'ballad', 'seventies 8101 country 8102 r&b', 'soul 8103 pop 8104 country', 'rock', 'adult contemporary', 'singer-songwriter', 'rockabilly 8105 r&b', 'pop', 'protest songs', 'ballad', 'easy listening', 'orchestral', 'soul', 'soul pop 8106 pop', 'smooth jazz', 'easy listening', 'seventies 8107 rock 8108 pop 8109 rock', 'soft rock', 'folk rock', 'easy listening', 'seventies', 'adult contemporary', 'singer-songwriter 8110 r&b 8111 pop 8112 rock 8113 r&b', 'country', 'pop', 'girl group', 'soul', 'soul pop', 'pop country 8114 pop 8115 r&b 8116 country 8117 pop 8118 pop 8119 pop 8120 rock 8121 rock', 'r&b 8122 r&b 8123 pop 8124 pop 8125 r&b', 'singer-songwriter', 'disco', 'seventies', 'funk', 'memes 8126 pop 8127 pop', 'rock', 'easy listening', 'soft rock', 'seventies', 'ballad', 'pop-rock 8128 rock', 'pop', 'seventies 8129 pop 8130 pop', 'r&b', 'funk', 'psychedelic', 'soul', 'soul pop 8131 pop 8132 rap 8133 pop', 'seventies 8134 pop 8135 rock', 'experimental rock', 'progressive rock', 'seventies 8136 rock 8137 r&b', 'blues 8138 country', 'rock', 'rockabilly 8139 pop 8140 pop 8141 r&b', 'pop', 'retro', 'seventies', 'motown', 'funk', 'soul', 'soul pop 8142 rock', 'blues rock 8143 r&b', 'soul 8144 pop', 'r&b', 'seventies', 'orchestral', 'ballad', 'soul', 'disco 8145 pop 8146 rock', 'blues rock 8147 pop 8148 rock 8149 r&b', 'pop', 'seventies', 'disco', 'cover', 'soul pop', 'soul 8150 pop 8151 rock 8152 r&b', 'rock 8153 pop 8154 pop 8155 country', 'cover 8156 country 8157 r&b', 'soul 8158 pop', 'r&b', 'adult alternative', 'smooth jazz', 'piano', 'seventies', 'motown', 'singer-songwriter', 'psychedelic soul', 'soul pop', 'soul jazz', 'soul', 'funk 8159 pop 8160 rap 8161 pop', 'orchestral', 'piano', 'soft rock', 'adult contemporary', 'ballad', 'seventies 8162 country', 'pop 8163 pop 8164 country 8165 r&b', 'pop', 'soul', 'soul pop 8166 r&b 8167 r&b', 'funk 8168 rock 8169 pop 8170 pop 8171 rock 8172 pop 8173 rock 8174 country', 'rock', 'piano', 'seventies', 'hard rock', 'singer-songwriter', 'ballad', 'southern rock 8175 pop 8176 pop 8177 pop 8178 pop', 'adult contemporary', 'easy listening', 'ballad', 'seventies 8179 pop 8180 rock', 'pop', 'island music', 'seventies', 'cover', 'pop-rock', 'piano', 'psychedelic rock', 'psychedelic 8181 r&b 8182 rock 8183 country', 'rock', 'easy listening', 'seventies', 'honky tonk 8184 r&b 8185 pop 8186 r&b', 'funk', 'soul', 'seventies 8187 pop 8188 rock', 'easy listening', 'seventies', 'pop-rock', 'adult alternative', 'yacht rock', 'soft rock', 'cover 8189 pop 8190 pop 8191 pop 8192 r&b 8193 pop 8194 pop 8195 rock', 'cover', 'blues rock', 'hard rock 8196 r&b 8197 rap', 'chicago rap', 'chicago drill', 'drill 8198 r&b 8199 pop', 'uk 8200 rock', 'ballad', 'glam rock', 'power pop', 'seventies', 'singer-songwriter 8201 rock', 'folk rock 8202 country', 'rock', 'alternative rock', 'soft rock', 'dream pop', 'seventies', 'singer-songwriter 8203 pop 8204 country', 'rock', 'seventies', 'yacht rock', 'adult contemporary', 'southern rock', 'roots', 'pop-rock 8205 pop 8206 r&b', 'motown', 'funk', 'psychedelic soul', 'psychedelic', 'soul 8207 country 8208 rock', 'art rock 8209 pop', 'r&b', 'motown', 'soul 8210 pop 8211 country 8212 pop 8213 r&b', 'soul', 'funk 8214 pop 8215 pop 8216 rock', 'folk rock', 'soft rock 8217 country', 'pop country', 'folk', 'folk rock', 'singer-songwriter', 'seventies 8218 pop 8219 r&b 8220 r&b', 'soul 8221 pop 8222 pop 8223 r&b', 'seventies', 'funk', 'soul 8224 r&b 8225 pop 8226 r&b', 'seventies', 'soul', 'funk', 'disco 8227 country 8228 rock', 'jazz', 'seventies 8229 pop 8230 r&b', 'seventies', 'funk rock', 'space rock 8231 rock 8232 country', 'rock', 'country rap 8233 pop 8234 r&b', 'pop', 'disco 8235 rock', 'hard rock 8236 rock', 'pop 8237 pop', 'r&b', 'piano', 'lullaby', 'soundtrack', 'singer-songwriter', 'easy listening', 'ballad', 'seventies', 'adult contemporary', 'soul', 'soul pop 8238 rap 8239 pop 8240 country', 'pop 8241 pop 8242 pop', 'ballad', 'seventies 8243 country', 'rock 8244 pop', 'r&b', 'funk', 'soul pop', 'soul 8245 r&b', 'pop', 'cover', 'ballad', 'soul', 'soul pop', 'funk', 'funk-pop', 'seventies 8246 r&b', 'disco', 'funk', 'soul 8247 pop 8248 pop 8249 pop 8250 pop 8251 pop 8252 rock 8253 country', 'pop 8254 country 8255 country 8256 pop 8257 pop 8258 country', 'méxico 8259 country 8260 pop 8261 rock', 'history 8262 country 8263 pop 8264 pop 8265 r&b', 'pop', 'soul 8266 rock', 'seventies', 'yacht rock 8267 pop 8268 rock', 'piano rock', 'art rock', 'singer-songwriter', 'british rock', 'album-oriented rock (aor)', 'piano', 'uk', 'seventies', 'glam rock', 'hard rock 8269 pop 8270 r&b', 'disco', 'funk 8271 r&b 8272 r&b', 'soul pop', 'soul', 'disco', 'seventies', 'funk 8273 rock', 'folk 8274 pop 8275 pop 8276 r&b', 'pop', 'disco', 'ballad', 'soul', 'soul pop', 'seventies 8277 rap', 'irish drill', 'drill', 'uk drill', 'uk rap', 'uk', 'ireland 8278 rock', 'adult contemporary', 'pop-rock', 'soft rock', 'seventies', 'politics 8279 country', 'rock', 'dancehall', 'dance 8280 pop 8281 r&b 8282 pop 8283 pop', 'r&b', 'funk-pop', 'soul', 'seventies', 'funk 8284 rock 8285 country 8286 pop 8287 rock 8288 pop 8289 r&b', 'soul 8290 pop 8291 r&b', 'pop', 'seventies', 'motown', 'soul', 'pop-rock 8292 country', 'feminism', 'seventies 8293 country', 'adult contemporary', 'seventies', 'yacht rock', 'folk pop', 'pop country', 'folk rock', 'pop-rock 8294 pop', 'synth rock', 'synth-pop', 'alternative', 'trip-hop', 'downtempo', 'electronica 8295 rock 8296 pop 8297 rock', 'seventies', 'singer-songwriter 8298 r&b', 'pop', 'seventies', 'orchestral', 'ballad', 'funk', 'soul 8299 r&b', 'pop', 'soul 8300 country 8301 rock', 'pop', 'pop-rock', 'soft rock', 'uk', 'piano', 'adult contemporary', 'easy listening', 'seventies', 'yacht rock 8302 pop', 'comedy 8303 pop 8304 pop 8305 pop 8306 pop 8307 pop 8308 pop 8309 pop 8310 pop 8311 rock', 'blues 8312 rock', 'r&b', 'album-oriented rock (aor)', 'uk', 'seventies', 'soul pop', 'soul', 'pop-rock', 'glam rock', 'blue-eyed soul 8313 pop', 'seventies', 'krautrock', 'electronic', 'experimental', 'deutschland', 'producer 8314 rap', 'uk rap', 'uk', 'freestyle 8315 country 8316 r&b 8317 r&b', 'soul', 'funk 8318 country', 'bluegrass', 'pop country', 'folk', 'folk rock', 'singer-songwriter', 'seventies 8319 pop 8320 pop 8321 pop 8322 rap', 'battle rap 8323 rap 8324 pop 8325 pop 8326 pop 8327 country', 'folk 8328 pop 8329 rock 8330 rock', 'singer-songwriter', 'american folk', 'folk rock', 'yacht rock', 'folk 8331 pop 8332 rock', 'blues rock', 'hard rock 8333 rock', 'easy listening', 'adult contemporary', 'seventies', 'yacht rock 8334 pop 8335 rock 8336 rock 8337 rock', 'seventies', 'pop-rock', 'glam rock 8338 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 8339 country 8340 rap 8341 r&b', 'pop', 'disco', 'soul', 'funk', 'funk-pop', 'seventies', 'orchestral 8342 r&b', 'funk', 'soul 8343 pop 8344 pop 8345 pop 8346 country', 'pop', 'rock', 'cover', 'adult contemporary', 'soundtrack', 'pop country', 'easy listening', 'soft rock', 'seventies', 'pop-rock 8347 rock', 'seventies', 'art rock', 'progressive rock 8348 pop 8349 pop 8350 rap 8351 rock 8352 pop 8353 rock 8354 rock', 'uk', 'seventies', 'heavy metal', 'folk rock', 'blues rock', 'hard rock 8355 pop 8356 pop 8357 r&b', 'seventies', 'disco 8358 pop 8359 pop 8360 rock', 'adult contemporary', 'pop-rock', 'jazz fusion', 'soft rock', 'seventies 8361 pop', 'seventies', 'live 8362 pop 8363 pop 8364 r&b', 'pop', 'soul 8365 pop 8366 country', 'rock 8367 pop 8368 pop 8369 rock', 'soft rock 8370 country', 'rock 8371 r&b', 'seventies', 'soul', 'soundtrack 8372 r&b', 'pop', 'funk', 'soul 8373 r&b', 'pop', 'soul', 'soul pop 8374 r&b', 'pop', 'funk', 'soul', 'soul pop 8375 pop 8376 country 8377 pop 8378 pop 8379 r&b', 'rock', 'pop', 'politics', 'disco', 'dance', 'funk rock', 'space rock 8380 country', 'rock 8381 country', 'outlaw country', 'southern rock 8382 pop', 'ballad', 'piano', 'seventies 8383 pop', 'funk 8384 pop 8385 pop 8386 pop 8387 pop 8388 pop 8389 rock', 'soft rock', 'piano', 'art rock', 'easy listening', 'seventies', 'video game', 'soundtrack', 'yacht rock', 'ballad', 'adult contemporary', 'ambient', 'synth rock', 'synth-pop', 'pop-rock 8390 pop 8391 pop', 'r&b', 'soul', 'funk', 'soul pop', 'funk-pop 8392 pop 8393 pop 8394 rock', 'album-oriented rock (aor)', 'seventies', 'glam metal', 'hard rock', 'glam rock 8395 country 8396 pop 8397 rock 8398 r&b', 'pop', 'seventies', 'orchestral', 'ballad', 'soul', 'funk', 'disco 8399 pop 8400 r&b 8401 rap', 'traducción al español 8402 pop 8403 country 8404 pop 8405 rock', 'soft rock', 'easy listening', 'british rock', 'singer-songwriter 8406 country', 'rock', 'adult contemporary', 'pop country', 'seventies', 'pop-rock 8407 country 8408 rock', 'country', 'honky tonk', 'seventies', 'outlaw country 8409 pop 8410 pop 8411 rock', 'soundtrack', 'seventies', 'disco', 'singer-songwriter 8412 pop 8413 pop 8414 pop 8415 pop 8416 r&b', 'ballad', 'soul 8417 rock', 'country', 'pop', 'australia 8418 pop 8419 pop 8420 r&b', 'pop', 'seventies', 'motown', 'pop-rock', 'soul 8421 pop 8422 pop 8423 rap', 'ireland 8424 pop 8425 rock', 'hard rock', 'glam rock', 'seventies', 'singer-songwriter 8426 rock 8427 pop 8428 pop', 'folk rock 8429 pop 8430 rock 8431 r&b 8432 pop 8433 r&b', 'p-funk', 'funk rock', 'funk 8434 r&b', 'rock', 'soul', 'funk', 'funk rock 8435 pop 8436 country', 'méxico 8437 pop 8438 pop 8439 country', 'rock', 'yacht rock', 'seventies', 'cover 8440 pop 8441 rock', 'pop', 'yacht rock', 'baroque pop', 'easy listening', 'adult contemporary', 'soft rock', 'seventies 8442 rap', 'discography', 'west coast 8443 pop 8444 pop', 'soundtrack 8445 pop', 'baroque pop', 'soft rock', 'seventies', 'piano 8446 pop 8447 pop 8448 pop 8449 rock', 'r&b', 'singer-songwriter', 'pop-rock', 'funk rock', 'funk 8450 rock', 'pop 8451 pop 8452 pop 8453 rap 8454 pop', 'rock', 'art rock', 'singer-songwriter', 'seventies', 'adult contemporary', 'ballad', 'piano', 'uk 8455 country', 'rock', 'album-oriented rock (aor)', 'hard rock', 'pop country', 'seventies', 'rockabilly', 'southern rock', 'yacht rock 8456 r&b', 'seventies', 'soundtrack', 'soul pop', 'soul', 'funk 8457 pop', 'cover 8458 pop 8459 pop 8460 pop 8461 r&b', 'pop', 'cover', 'retro', 'seventies', 'motown', 'soul pop', 'disco', 'soul 8462 r&b', 'soul 8463 rap', 'battle rap 8464 pop 8465 pop 8466 pop 8467 pop 8468 pop 8469 r&b', 'funk', 'soul 8470 pop 8471 r&b 8472 pop 8473 pop 8474 r&b', 'disco', 'seventies', 'soundtrack 8475 r&b', 'pop 8476 r&b 8477 pop 8478 rock', 'yacht rock 8479 rock 8480 pop 8481 country', 'rock', 'pop', 'ballad', 'easy listening', 'adult contemporary', 'seventies', 'yacht rock 8482 r&b', 'funk', 'soul 8483 pop 8484 pop 8485 rap 8486 pop 8487 r&b 8488 pop 8489 r&b', 'pop', 'soul', 'soul pop 8490 rock', 'pop 8491 r&b 8492 r&b', 'pop 8493 rap 8494 pop 8495 pop 8496 pop 8497 pop 8498 pop 8499 rock 8500 pop 8501 rap', 'west coast', 'g-funk', 'gangsta rap 8502 rock 8503 rock 8504 pop 8505 pop 8506 rap', 'hip-hop 8507 pop 8508 r&b', 'funk 8509 r&b', 'singer-songwriter 8510 pop', 'rock', 'svensk pop', 'scandipop', 'scandinavia', 'seventies', 'sverige', 'pop-rock 8511 pop 8512 pop 8513 rap 8514 rock', 'singer-songwriter', 'hard rock', 'heartland rock', 'blues rock', 'album-oriented rock (aor) 8515 rock 8516 rock', 'pop', 'pop-rock', 'gospel', 'singer-songwriter', 'folk rock 8517 country 8518 pop 8519 pop', 'en español 8520 pop 8521 pop 8522 pop 8523 pop', 'christian 8524 pop 8525 r&b', 'seventies', 'soul', 'funk 8526 rock', 'pop', 'ballad', 'soft rock', 'dream pop', 'yacht rock', 'easy listening', 'singer-songwriter', 'psychedelic', 'psychedelic rock', 'seventies 8527 pop 8528 pop 8529 pop 8530 rock', 'sixties', 'uk', 'british rock 8531 r&b', 'soul 8532 r&b', 'pop', 'disco', 'soul', 'funk', 'funk-pop', 'seventies 8533 r&b', 'doo-wop 8534 country', 'rock 8535 pop 8536 country 8537 rap', 'hardcore hip-hop', 'hip-hop', 'unreleased', 'west coast 8538 pop 8539 rap', 'remix', 'boom bap', 'youtube', 'trap', 'hip-hop 8540 country 8541 pop', 'soundtrack', 'yacht rock', 'seventies 8542 country 8543 pop 8544 pop', 'funk', 'disco', 'soul pop 8545 pop 8546 pop 8547 rock', 'pop 8548 rock', 'southern rock 8549 pop', 'ballad', 'seventies 8550 pop 8551 country 8552 r&b', 'pop', 'jazz', 'soul 8553 r&b', 'soul', 'funk 8554 r&b 8555 country', 'alternative country', 'outlaw country 8556 pop 8557 country', 'rock', 'soundtrack', 'singer-songwriter', 'seventies', 'yacht rock', 'folk 8558 pop 8559 r&b', 'rock 8560 pop 8561 rap', 'pop', 'alternative pop 8562 pop 8563 rock', 'power pop', 'singer-songwriter', 'seventies', 'heartland rock 8564 rock', 'uk', 'album-oriented rock (aor)', 'adult contemporary', 'cover', 'eighties 8565 pop 8566 rock', 'seventies', 'funk 8567 pop 8568 pop 8569 country', 'rock 8570 r&b', 'soul 8571 pop 8572 pop', 'folk 8573 country 8574 rock', 'folk rock 8575 pop 8576 pop', 'r&b', 'ballad', 'spoken word', 'soul', 'soul pop', 'funk', 'funk-pop', 'seventies 8577 rock', 'sixties', 'british rock', 'uk', 'blues rock', 'folk rock', 'psychedelic rock 8578 pop 8579 r&b', 'soul 8580 pop 8581 rock', 'british rock', 'singer-songwriter 8582 pop', 'r&b', 'adult contemporary', 'yacht rock', 'piano', 'seventies', 'singer-songwriter', 'funk 8583 pop 8584 pop 8585 country', 'rock 8586 pop 8587 pop 8588 pop', 'rock', 'disco', 'seventies', 'piano 8589 rap', 'battle rap 8590 pop', 'seventies 8591 r&b 8592 pop', 'disco 8593 rock', 'progressive rock 8594 pop 8595 pop 8596 pop 8597 rap', 'china 8598 rock', 'pop', 'singer-songwriter', 'folk rock 8599 pop', 'cover 8600 rock', 'pop-rock', 'soft rock', 'seventies', 'cover', 'uk 8601 pop 8602 pop 8603 pop 8604 pop', 'cover 8605 pop 8606 country', 'rock', 'southern rock 8607 rock', 'pop 8608 pop 8609 rap', 'battle rap 8610 rock 8611 pop', 'seventies', 'funk', 'disco 8612 r&b', 'soul 8613 country', 'rock', 'seventies', 'folk', 'folk rock', 'jazz fusion', 'blues rock', 'funk rock', 'psychedelic', 'psychedelic rock 8614 country', 'rock 8615 rock 8616 pop 8617 pop 8618 rock', 'seventies', 'live 8619 pop 8620 pop', 'rock 8621 pop', 'r&b', 'soundtrack', 'motown', 'soul pop', 'soul', 'seventies 8622 r&b 8623 r&b', 'funk', 'soul 8624 pop 8625 pop 8626 pop 8627 rock 8628 r&b', 'pop', 'soul 8629 country 8630 pop 8631 r&b', 'funk', 'soul 8632 r&b 8633 pop', 'rock', 'pop country', 'alternative country', 'electric blues', 'progressive rock', 'uk', 'art rock', 'psychedelic rock', 'psychedelic', 'soft rock', 'album-oriented rock (aor)', 'seventies', 'producer', 'adult alternative', 'adult contemporary', 'pop-rock 8634 r&b 8635 pop 8636 r&b', 'seventies', 'soul 8637 pop 8638 rock', 'seventies', 'british rock', 'uk', 'hard rock', 'glam rock 8639 pop', 'soft rock', 'piano', 'easy listening', 'seventies 8640 r&b', 'rock', 'disco', 'soul', 'funk 8641 rock 8642 pop 8643 r&b', 'pop', 'soul', 'soul pop 8644 rock', 'singer-songwriter', 'seventies 8645 r&b', 'funk 8646 pop 8647 pop', 'soul', 'funk 8648 rock', 'cover', 'ballad', 'hard rock', 'blues rock 8649 r&b', 'pop', 'funk', 'soul', 'soul pop 8650 rock', 'pop-rock', 'folk rock 8651 rock 8652 pop', 'nederland 8653 pop 8654 rap 8655 pop', 'rap', 'neo soul', 'conscious hip-hop', 'west coast 8656 rap 8657 rock 8658 country 8659 country 8660 r&b', 'euro-disco', 'seventies', 'funk', 'disco 8661 pop 8662 rap', 'en español 8663 country 8664 rock 8665 pop 8666 rap 8667 r&b 8668 r&b 8669 pop 8670 pop 8671 r&b 8672 pop 8673 pop 8674 rock', 'blues rock', 'hard rock 8675 pop', 'brill building 8676 pop', 'easy listening', 'piano 8677 rock', 'uk', 'british rock', 'doo-wop', 'seventies', 'funk rock', 'funk', 'art rock', 'blue-eyed soul', 'pop-rock 8678 country', 'holiday 8679 pop', 'r&b', 'seventies', 'soul pop', 'soul 8680 pop 8681 pop 8682 pop 8683 pop 8684 pop 8685 pop 8686 rock', 'pop', 'pop-rock', 'singer-songwriter', 'seventies 8687 country', 'rock', 'singer-songwriter', 'seventies 8688 rock', 'pop 8689 pop', 'singer-songwriter', 'soft rock', 'piano', 'seventies', 'adult contemporary', 'ballad', 'pop-rock 8690 pop 8691 r&b', 'soul 8692 pop 8693 pop', 'christmas', 'christian 8694 country 8695 r&b', 'pop', 'disco', 'orchestral', 'seventies', 'ballad', 'soul 8696 pop', 'seventies 8697 pop 8698 pop 8699 r&b', 'pop', 'motown 8700 r&b', 'pop', 'funk', 'piano', 'disco', 'seventies 8701 pop 8702 rock', 'sixties', 'psychedelic', 'bolero', 'psychedelic rock 8703 pop', 'rock', 'glam rock 8704 rock 8705 pop 8706 rock', 'piano rock', 'british rock', 'baroque pop', 'art rock', 'hard rock', 'avant-pop', 'piano', 'seventies', 'art pop', 'singer-songwriter', 'uk', 'progressive rock 8707 r&b', 'ballad', 'soul 8708 pop 8709 rock', 'seventies 8710 pop 8711 rock', 'seventies', 'dream pop', 'singer-songwriter', 'synth-pop', 'space rock', 'psychedelic rock', 'easy listening', 'adult contemporary', 'yacht rock', 'progressive rock 8712 r&b', 'soul 8713 pop 8714 pop 8715 rap 8716 pop 8717 pop', 'cover', 'uk 8718 pop 8719 r&b 8720 r&b 8721 pop', 'r&b', 'soul 8722 r&b', 'funk', 'soul 8723 pop 8724 pop 8725 rap 8726 pop 8727 rap', 'live broadcast', 'freestyle 8728 pop 8729 pop 8730 country 8731 pop 8732 r&b', 'funk', 'soul', 'jazz fusion 8733 country 8734 rap 8735 rock', 'soul', 'singer-songwriter', 'seventies', 'heartland rock 8736 pop 8737 rap', 'battle rap 8738 country 8739 r&b', 'rock', 'soul', 'motown 8740 pop', 'rock', 'r&b', 'yacht rock', 'seventies', 'soundtrack', 'easy listening', 'pop-rock', 'adult contemporary', 'soul 8741 rap', 'west coast', 'hip-hop', 'hardcore hip-hop 8742 pop 8743 pop 8744 rock 8745 pop 8746 pop 8747 country 8748 pop 8749 pop 8750 rock', 'pop', 'pop-rock', 'folk pop', 'folk rock', 'singer-songwriter', 'seventies', 'folk 8751 r&b', 'motown', 'funk', 'psychedelic soul', 'psychedelic', 'soul 8752 pop 8753 r&b 8754 pop 8755 pop 8756 country 8757 pop 8758 rock', 'hard rock', 'glam rock 8759 r&b', 'gospel', 'soul 8760 pop 8761 r&b', 'disco 8762 pop 8763 pop', 'rock', 'scandipop', 'sverige', 'seventies', 'pop-rock 8764 rock', 'hard rock', 'folk rock', 'british rock', 'seventies', 'progressive rock 8765 rock 8766 r&b', 'pop', 'disco', 'netflix 8767 pop 8768 r&b', 'funk 8769 r&b', 'funk', 'soul 8770 rock', 'pop', 'singer-songwriter', 'soft rock', 'seventies', 'yacht rock 8771 rap 8772 pop 8773 pop 8774 rap 8775 country 8776 pop 8777 pop 8778 pop 8779 r&b 8780 pop 8781 pop', 'folk 8782 r&b', 'disco', 'soul 8783 r&b', 'rap 8784 country', 'pop', 'rock', 'blues rock', 'yacht rock', 'seventies', 'screen 8785 rock', 'seventies', 'art rock', 'pop-rock', 'psychedelic', 'soft rock', 'singer-songwriter 8786 pop 8787 pop 8788 pop 8789 country 8790 r&b', 'rap', 'trap 8791 rock', 'singer-songwriter', 'seventies', 'art rock 8792 rock', 'folk rock', 'folk 8793 pop 8794 rap', 'cypher 8795 pop 8796 rap 8797 country 8798 pop 8799 r&b', 'funk', 'soul 8800 rock 8801 r&b', 'pop', 'cover', 'ballad', 'soul', 'soul pop', 'seventies 8802 pop 8803 rock', 'glam metal', 'glam rock', 'hard rock 8804 rock', 'folk rock', 'americana 8805 r&b 8806 pop 8807 rock', 'southern rock 8808 rap 8809 rap 8810 rock', 'easy listening', 'theme song', 'tv', 'singer-songwriter', 'seventies 8811 rap', 'battle rap 8812 r&b 8813 country', 'pop 8814 pop 8815 country 8816 pop 8817 pop 8818 pop 8819 pop 8820 r&b', 'disco', 'soul', 'motown 8821 pop 8822 pop', 'uk', 'seventies', 'soul 8823 rap', 'trap', 'alternative', 'uk rap', 'uk 8824 pop', 'soundtrack 8825 rap', 'hip-hop', 'abstract rap', 'boom bap', 'hardcore hip-hop', 'horrorcore', 'beef', 'west coast', 'memes 8826 pop 8827 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 8828 rock', 'funk', 'jazz-funk', 'jazz fusion', 'soft rock', 'adult contemporary', 'yacht rock', 'seventies', 'singer-songwriter', 'ballad', 'uk 8829 pop 8830 pop 8831 pop 8832 rock', 'uk', 'seventies 8833 pop 8834 r&b', 'rap', 'country', 'pop', 'rock 8835 pop 8836 pop 8837 pop', 'seventies', 'disco 8838 r&b', 'pop', 'soul pop', 'soul', 'disco 8839 pop 8840 rap 8841 pop 8842 rock', 'pop', 'jazz fusion', 'piano', 'soft rock', 'race / ethnicity', 'seventies', 'protest songs', 'singer-songwriter', 'yacht rock 8843 pop 8844 pop 8845 rock 8846 rock', 'pop', 'singer-songwriter', 'seventies', 'yacht rock 8847 rock', 'album-oriented rock (aor)', 'soundtrack', 'hard rock 8848 rock', 'pop', 'easy listening', 'yacht rock 8849 r&b', 'soul 8850 r&b', 'ballad', 'soul', 'seventies 8851 rock', 'ballad 8852 r&b', 'seventies', 'disco', 'funk', 'soul 8853 pop 8854 pop 8855 r&b', 'seventies', 'soundtrack', 'cover', 'funk', 'soul pop', 'soul 8856 pop 8857 pop 8858 pop 8859 rock', 'pop', 'singer-songwriter', 'folk rock', 'pop-rock 8860 pop 8861 pop', 'disco', 'seventies 8862 r&b', 'soul 8863 pop 8864 r&b', 'seventies', 'funk 8865 pop 8866 pop 8867 pop 8868 country 8869 pop 8870 rap', 'battle rap 8871 pop 8872 rock 8873 rap 8874 pop', 'adult contemporary', 'seventies', 'yacht rock 8875 rock', 'pop', 'soundtrack', 'screen 8876 pop 8877 pop', 'uk', 'eurovision 8878 pop 8879 pop 8880 country 8881 rock', 'hard rock 8882 rock', 'funk 8883 rock', 'ballad', 'disco', 'easy listening', 'progressive rock', 'seventies', 'soft rock 8884 pop 8885 rock', 'uk', 'pop-rock', 'british rock', 'glam rock 8886 rock', 'british rock', 'uk', 'seventies', 'art rock', 'blue-eyed soul', 'funk', 'krautrock', 'funk rock 8887 pop 8888 pop 8889 country 8890 pop', 'rock', 'glam rock', 'scandipop', 'svensk rock', 'scandinavia', 'sverige', 'seventies', 'pop-rock 8891 pop 8892 r&b', 'pop', 'seventies', 'disco 8893 rap', 'trap', 'hip-hop 8894 r&b', 'pop 8895 pop 8896 pop 8897 pop 8898 country 8899 pop', 'live', 'soul', 'indie', 'folk', 'chamber music', 'indie pop 8900 pop', 'pop-rock 8901 pop 8902 pop 8903 pop 8904 pop 8905 rock', 'cover', 'pop-rock 8906 r&b', 'pop', 'seventies', 'adult contemporary', 'easy listening', 'yacht rock', 'funk-pop', 'funk', 'piano', 'soul pop', 'soul', 'disco 8907 pop 8908 rock', 'glam metal', 'glam rock', 'hard rock 8909 pop 8910 pop', 'rock', 'seventies', 'cover', 'piano', 'garage rock', 'hard rock', 'heartland rock', 'electric blues', 'blues rock', 'blues', 'album-oriented rock (aor)', 'pop-rock 8911 rock', 'hard rock', 'blues rock 8912 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 8913 rap 8914 rock 8915 pop 8916 rock 8917 pop', 'r&b', 'rock', 'uk', 'jazz fusion', 'british rock', 'singer-songwriter', 'pop-rock 8918 pop 8919 r&b', 'soundtrack', 'soul 8920 rock', 'comedy', 'blues 8921 country', 'pop', 'ballad', 'seventies 8922 pop 8923 r&b', 'jazz 8924 rock', 'seventies', 'ballad', 'yacht rock 8925 rock 8926 pop 8927 rock', 'yacht rock 8928 pop', 'soul', 'disco 8929 r&b', 'soundtrack', 'singer-songwriter', 'funk rock', 'seventies', 'funk 8930 rock', 'soundtrack', 'marvel 8931 pop 8932 rock', 'pop-rock', 'soft rock', 'seventies', 'funk rock', 'adult contemporary 8933 rock', 'soft rock', 'easy listening', 'seventies', 'yacht rock', 'singer-songwriter', 'pop-rock', 'ballad', 'adult contemporary 8934 pop 8935 pop 8936 rock', 'soft rock', 'easy listening', 'adult contemporary', 'british rock', 'pop-rock', 'piano', 'soundtrack 8937 pop', 'rock', 'soundtrack', 'british rock', 'uk', 'singer-songwriter', 'seventies', 'pop-rock', 'disco', 'piano 8938 pop', 'rock', 'seventies', 'pop-rock', 'funk rock', 'funk-pop', 'funk', 'uk', 'soundtrack', 'singer-songwriter', 'disco 8939 rock', 'reggae', 'jamaica 8940 rock', 'adult alternative', 'alternative', 'alternative rock', 'album-oriented rock (aor)', 'uk', 'pop-rock', 'folk rock', 'soft rock 8941 pop 8942 rock', 'pop', 'album-oriented rock (aor)', 'funk', 'jazz-funk', 'jazz', 'adult contemporary', 'seventies', 'easy listening', 'pop-rock', 'jazz fusion', 'smooth jazz', 'blue-eyed soul', 'disco', 'yacht rock 8943 country', 'pop', 'pop-rock', 'ballad', 'yacht rock 8944 rock 8945 rock', 'pop', 'yacht rock 8946 rap 8947 rap 8948 pop 8949 r&b', 'funk', 'soul', 'seventies 8950 r&b', 'disco', 'seventies', 'soul 8951 r&b 8952 country 8953 pop 8954 rock', 'seventies', 'pop-rock', 'funk rock', 'yacht rock', 'jazz fusion 8955 pop', 'disco', 'seventies 8956 pop 8957 rap 8958 r&b', 'funk 8959 pop 8960 rock', 'seventies', 'album-oriented rock (aor)', 'hard rock 8961 rap 8962 pop 8963 pop 8964 pop 8965 r&b', 'pop', 'soul 8966 rap', 'alternative 8967 r&b 8968 country 8969 pop 8970 country 8971 rock', 'blues rock 8972 rock', 'progressive rock 8973 r&b', 'pop', 'ballad', 'soul', 'soul pop', 'seventies', 'cover 8974 r&b', 'pop', 'orchestral', 'seventies', 'ballad', 'soul', 'disco 8975 pop 8976 country', 'rock', 'cover 8977 rock', 'pop', 'seventies', 'yacht rock 8978 country', 'folk 8979 rock', 'hard rock', 'psychedelic rock 8980 pop 8981 r&b', 'christian r&b 8982 pop 8983 pop 8984 pop 8985 pop 8986 pop', 'smooth jazz', 'yacht rock', 'jazz 8987 pop 8988 pop 8989 pop', 'disco 8990 rock', 'baroque pop', 'ballad', 'orchestral', 'seventies', 'soft rock', 'adult contemporary', 'easy listening', 'singer-songwriter 8991 r&b', 'pop', 'funk', 'disco 8992 r&b 8993 rock 8994 r&b 8995 rock 8996 pop 8997 r&b', 'seventies', 'funk', 'soul 8998 rap 8999 pop 9000 r&b', 'rap', 'country', 'pop', 'rock 9001 country', 'rock 9002 rap 9003 rock', 'pop 9004 rock', 'seventies', 'yacht rock 9005 pop 9006 rock', 'pop-rock', 'seventies', 'australia 9007 pop 9008 rock', 'pop-rock 9009 pop 9010 r&b', 'rock 9011 pop 9012 rock 9013 pop 9014 country', 'rock', 'seventies', 'easy listening', 'adult alternative', 'adult contemporary', 'singer-songwriter', 'folk rock', 'history', 'folk 9015 r&b', 'pop', 'soul', 'disco 9016 pop 9017 rap', 'alternative r&b', 'atlanta', 'trap 9018 pop 9019 pop 9020 rap 9021 rap', 'remix', 'lo-fi 9022 pop', 'rock', 'scandipop', 'svensk rock', 'scandinavia', 'seventies', 'sverige', 'pop-rock 9023 rap 9024 pop 9025 pop 9026 pop 9027 pop 9028 pop 9029 rock 9030 pop 9031 country 9032 pop 9033 rock 9034 pop 9035 r&b', 'seventies', 'funk', 'soul', 'motown 9036 pop 9037 rock', 'blues rock 9038 pop 9039 r&b 9040 pop 9041 pop', 'seventies 9042 pop 9043 r&b', 'motown', 'piano', 'ballad', 'soul pop', 'soul 9044 rock', 'album-oriented rock (aor)', 'adult contemporary', 'ballad', 'hard rock', 'glam rock', 'seventies', 'singer-songwriter 9045 r&b', 'funk 9046 pop 9047 pop 9048 pop 9049 rock 9050 pop 9051 pop 9052 pop 9053 pop 9054 pop 9055 r&b', 'soul 9056 rock 9057 rock 9058 rap 9059 pop 9060 rock 9061 r&b', 'ballad', 'soul 9062 rock', 'pop', 'glam rock', 'seventies', 'pop-rock', 'soft rock', 'uk 9063 r&b', 'pop', 'soundtrack', 'soul', 'dance 9064 pop 9065 country 9066 pop 9067 pop 9068 rock 9069 r&b', 'soul', 'disco 9070 pop 9071 pop 9072 pop 9073 country', 'outlaw country', 'seventies 9074 rock 9075 pop 9076 pop 9077 pop 9078 rock', 'progressive rock 9079 r&b', 'seventies', 'disco', 'funk', 'soul 9080 rock', 'pop', 'yacht rock', 'disco 9081 pop 9082 pop', 'seventies', 'yacht rock 9083 r&b', 'seventies', 'disco', 'soundtrack', 'funk', 'screen 9084 pop 9085 rock', 'baroque pop', 'symphonic rock', 'uk', 'seventies', 'pop-rock', 'british rock', 'orchestral 9086 r&b', 'disco', 'jazz-funk', 'jazz fusion', 'funk 9087 pop 9088 pop 9089 pop 9090 pop 9091 r&b 9092 pop 9093 rap', 'battle rap 9094 pop 9095 r&b', 'pop', 'patois', 'jamaica', 'dancehall 9096 country 9097 rap', 'battle rap 9098 pop 9099 pop 9100 rock 9101 pop 9102 pop 9103 rap 9104 pop 9105 pop', 'baroque pop', 'orchestral', 'uk', 'seventies', 'ballad', 'singer-songwriter', 'piano 9106 pop 9107 r&b', 'pop', 'seventies', 'funk', 'disco', 'soul', 'soul pop 9108 r&b', 'rock', 'pop', 'synth rock', 'soundtrack', 'jazz fusion', 'seventies', 'blue-eyed soul', 'yacht rock 9109 pop 9110 pop', 'rock', 'singer-songwriter', 'sixties', 'british rock', 'uk', 'pop-rock', 'ska 9111 rock 9112 pop 9113 r&b', 'pop', 'yacht rock', 'soul', 'soul pop', 'blue-eyed soul 9114 pop', 'seventies 9115 rock', 'seventies', 'glam rock', 'hard rock 9116 pop 9117 rock', 'hard rock', 'seventies', 'progressive rock', 'cover 9118 rock', 'art rock', 'piano rock', 'progressive rock', 'gospel', 'british rock', 'piano', 'uk', 'seventies', 'glam rock', 'pop-rock 9119 rock', 'soft rock 9120 pop 9121 pop 9122 pop 9123 rap', 'france', 'french rap 9124 rock 9125 pop 9126 r&b 9127 pop', 'r&b', 'seventies', 'motown', 'singer-songwriter', 'funk', 'soul pop', 'soul 9128 rock', 'pop 9129 pop 9130 pop 9131 rock', 'pop-rock', 'british rock', 'soft rock', 'uk', 'seventies 9132 pop 9133 pop 9134 pop 9135 rock', 'pop', 'soundtrack', 'pop-rock 9136 pop 9137 rock', 'seventies', 'garage rock', 'heartland rock', 'hard rock', 'electric blues', 'blues rock', 'blues', 'singer-songwriter 9138 rock', 'pop', 'euro-disco', 'scandipop', 'svensk rock', 'piano', 'scandinavia', 'sverige', 'seventies', 'pop-rock', 'disco 9139 pop 9140 r&b', 'pop', 'soul 9141 rock', 'pop 9142 pop 9143 pop 9144 rock', 'yacht rock', 'jazz fusion', 'seventies', 'jazz', 'soft rock', 'singer-songwriter 9145 pop', 'indie pop', 'lo-fi', 'eighties', 'indie 9146 pop', 'rock', 'country', 'ballad', 'seventies 9147 rock', 'singer-songwriter', 'protest songs', 'psychedelic rock', 'psychedelic', 'seventies 9148 rock 9149 rock 9150 rap 9151 pop 9152 r&b', 'pop', 'lgbtq+', 'seventies', 'funk', 'motown', 'soul', 'disco 9153 pop 9154 pop 9155 rock', 'seventies', 'hard rock', 'progressive rock 9156 r&b', 'soul 9157 rap', 'pop', 'hyperpop', 'cypher 9158 rap 9159 pop 9160 rap', 'hip-hop 9161 rap 9162 rock', 'singer-songwriter', 'alternative rock', 'uk', 'progressive rock', 'yacht rock', 'art rock', 'folk rock', 'soft rock', 'glam rock', 'seventies', 'adult alternative', 'adult contemporary', 'pop-rock 9163 r&b', 'funk', 'disco', 'soul 9164 pop 9165 rock', 'soundtrack', 'yacht rock 9166 pop 9167 pop 9168 pop 9169 r&b', 'funk rock', 'funk 9170 pop', 'funk', 'disco 9171 rock', 'power metal', 'symphonic metal', 'progressive metal', 'metal 9172 rap', 'france', 'french rap 9173 r&b', 'pop', 'soul', 'disco', 'soul pop 9174 rock', 'singer-songwriter', 'seventies', 'yacht rock', 'blue-eyed soul 9175 rap', 'freestyle', 'covid-19', 'charity 9176 pop 9177 pop', 'euro-disco', 'deutschland', 'seventies', 'disco 9178 pop 9179 rap', 'freestyle', 'covid-19', 'charity 9180 pop 9181 rock', 'funk', 'seventies', 'british rock', 'uk', 'singer-songwriter 9182 pop 9183 pop', 'seventies 9184 pop 9185 pop 9186 r&b', 'pop', 'seventies', 'soul pop', 'soul 9187 pop 9188 r&b', 'rock', 'pop', 'blue-eyed soul', 'adult alternative', 'seventies', 'album-oriented rock (aor)', 'adult contemporary', 'southern rock', 'soul pop', 'soul', 'yacht rock 9189 rock', 'cover 9190 pop 9191 pop 9192 pop 9193 pop 9194 rock', 'pop', 'pop-rock', 'british rock 9195 rock', 'r&b', 'soul', 'soundtrack 9196 pop 9197 pop 9198 r&b', 'soul', 'disco 9199 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 9200 rock', 'disco', 'pop-rock', 'funk rock 9201 rock', 'seventies', 'live 9202 rock', 'pop', 'glam rock', 'british rock', 'seventies', 'cover', 'uk', 'pop-rock 9203 pop 9204 r&b', 'soul', 'seventies', 'funk 9205 pop 9206 pop 9207 country', 'seventies', 'cover 9208 rap', 'hip-hop', 'hardcore hip-hop', 'remix', 'west coast', 'gangsta rap', 'g-funk 9209 pop 9210 pop 9211 rock 9212 pop 9213 pop 9214 pop 9215 rap 9216 rock', 'seventies', 'album-oriented rock (aor)', 'yacht rock', 'adult alternative', 'adult contemporary', 'funk rock', 'blues rock 9217 pop 9218 rock', 'short story', 'alternative country', 'seventies', 'singer-songwriter', 'pop-rock 9219 rap 9220 rock', 'pop', 'ballad', 'yacht rock', 'seventies 9221 pop', 'disco 9222 r&b', 'soul 9223 pop', 'cover 9224 r&b', 'pop', 'funk', 'soul pop', 'funk-pop 9225 rap 9226 pop', 'folk 9227 rap', 'deutschsprachiger rap', 'deutschland 9228 pop 9229 rock', 'melodic hardcore 9230 r&b', 'soundtrack', 'seventies', 'disco 9231 pop 9232 pop 9233 country 9234 pop 9235 rock', 'easy listening', 'soundtrack', 'singer-songwriter', 'yacht rock', 'pop-rock 9236 country 9237 rock', 'country', 'southern rock 9238 pop 9239 rock', 'art rock', 'progressive rock 9240 rock', 'education 9241 pop 9242 rap 9243 rap 9244 pop 9245 r&b', 'pop', 'jazz-funk', 'funk 9246 rap 9247 rock 9248 pop 9249 pop 9250 rock', 'glam rock', 'british rock', 'uk', 'seventies', 'hard rock 9251 pop', 'seventies', 'yacht rock 9252 r&b', 'soul 9253 pop 9254 rock 9255 pop', 'power pop 9256 pop 9257 pop 9258 r&b 9259 pop 9260 country', 'seventies 9261 pop 9262 rock', 'seventies', 'synth rock', 'hard rock 9263 pop', 'country', 'pop-rock 9264 r&b', 'pop', 'soul 9265 rap', 'gangsta rap 9266 rock', 'blues rock 9267 pop 9268 pop', 'r&b', 'seventies', 'motown', 'singer-songwriter', 'funk', 'soul pop', 'soul 9269 pop 9270 rock', 'country', 'reggae', 'seventies', 'singer-songwriter', 'pop country', 'pop-rock 9271 rock 9272 pop 9273 pop 9274 pop 9275 rock', 'pop', 'yacht rock', 'pop-rock 9276 pop 9277 rock', 'soft rock', 'funk rock', 'jazz fusion', 'seventies 9278 rock 9279 rock 9280 pop', 'rock', 'experimental pop', 'experimental rock', 'experimental', 'seventies', 'uk', 'blue-eyed soul', 'funk', 'soul pop', 'soul', 'avant garde', 'avant-pop', 'british rock', 'new wave', 'art pop', 'krautrock', 'funk rock', 'art rock 9281 pop 9282 pop 9283 r&b', 'pop', 'seventies', 'funk', 'disco', 'soul', 'soul pop 9284 pop 9285 rock', 'singer-songwriter', 'folk rock', 'seventies', 'alternative rock', 'art rock', 'pop-rock', 'soft rock', 'uk 9286 rock', 'soft rock 9287 pop 9288 pop 9289 rap', 'electronic', 'uk rap', 'uk', 'grime 9290 rock', 'pop', 'seventies', 'yacht rock 9291 pop 9292 rock 9293 pop 9294 pop', 'rock', 'garage rock', 'blues rock', 'blues', 'album-oriented rock (aor)', 'piano', 'hardcore', 'hard rock', 'seventies', 'pop-rock', 'heartland rock', 'singer-songwriter 9295 pop 9296 pop 9297 rock', 'soul', 'tv 9298 pop 9299 pop', 'country 9300 pop', 'seventies', 'uk 9301 pop 9302 rock 9303 rock', 'pop 9304 pop 9305 pop 9306 pop', 'rock', 'pop-rock', 'folk pop', 'baroque pop', 'seventies', 'uk', 'british rock', 'progressive rock', 'folk rock', 'art rock', 'art pop 9307 pop', 'dance 9308 pop 9309 rap 9310 pop 9311 r&b', 'soul', 'seventies', 'soul pop', 'funk 9312 pop 9313 pop', 'seventies 9314 country 9315 pop', 'pop-rock', 'seventies', 'piano', 'soft rock 9316 pop 9317 rap 9318 rock', 'soft rock', 'seventies', 'easy listening', 'singer-songwriter', 'yacht rock 9319 pop', 'disco 9320 country', 'rock', 'seventies 9321 pop', 'scandipop', 'scandinavia', 'svensk rock', 'sverige', 'seventies', 'pop-rock 9322 rock', 'seventies 9323 pop', 'seventies', 'teen pop 9324 r&b', 'funk rock', 'funk 9325 rock 9326 pop', 'disco', 'funk', 'soul 9327 rap 9328 pop 9329 pop 9330 rock 9331 pop 9332 pop 9333 rock', 'pop', 'soundtrack', 'pop-rock 9334 pop 9335 r&b 9336 rock', 'pop', 'screen 9337 rock 9338 rock', 'seventies', 'hard rock', 'soundtrack 9339 pop 9340 rock', 'yacht rock', 'ballad 9341 pop 9342 rock 9343 r&b', 'pop', 'funk', 'soul', 'soul pop 9344 pop 9345 rock', 'seventies', 'progressive rock', 'acoustic', 'pop-rock 9346 r&b', 'pop', 'rock', 'soft rock', 'yacht rock', 'seventies', 'singer-songwriter', 'motown', 'easy listening', 'ballad', 'adult contemporary', 'soul pop', 'soul', 'piano', 'pop-rock 9347 pop 9348 r&b', 'pop', 'ballad', 'orchestral', 'motown', 'soul', 'funk', 'disco', 'seventies 9349 pop 9350 pop 9351 rock', 'pop 9352 pop 9353 rock 9354 pop 9355 rock', 'ballad', 'progressive rock', 'pop-rock', 'uk', 'british rock', 'seventies 9356 pop', 'r&b', 'motown', 'seventies 9357 pop 9358 pop 9359 pop', 'seventies 9360 rock', 'alternative rock', 'shoegaze', 'emo 9361 rock', 'southern rock', 'seventies', 'hard rock', 'cover', 'blues rock 9362 rock 9363 country', 'rock', 'soft rock', 'folk', 'adult contemporary', 'easy listening', 'seventies', 'cover 9364 rock 9365 rock', 'pop 9366 pop 9367 pop 9368 pop 9369 country 9370 country', 'soundtrack 9371 country', 'rock 9372 r&b', 'funk', 'soul 9373 pop 9374 rock 9375 rock 9376 pop 9377 pop', 'soundtrack 9378 rap 9379 country 9380 r&b', 'pop', 'psychedelic soul', 'psychedelic rock', 'psychedelic', 'soul pop', 'soul', 'funk-pop', 'funk rock', 'funk 9381 r&b', 'pop', 'seventies', 'disco', 'soul pop', 'soul 9382 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 9383 pop 9384 rock', 'album-oriented rock (aor)', 'alternative country', 'adult alternative', 'alternative', 'alternative rock', 'progressive rock', 'art rock', 'folk rock', 'psychedelic rock', 'uk', 'psychedelic', 'soft rock', 'singer-songwriter', 'seventies', 'pop-rock 9385 pop 9386 r&b', 'pop 9387 pop 9388 pop 9389 pop', 'rock', 'garage rock', 'seventies', 'hardcore', 'singer-songwriter', 'album-oriented rock (aor)', 'electric blues', 'blues rock', 'blues', 'hard rock', 'heartland rock', 'pop-rock 9390 country 9391 rap 9392 pop 9393 rock 9394 rock 9395 pop', 'disco 9396 rap 9397 pop 9398 rock', 'seventies 9399 pop 9400 rock', 'seventies', 'album-oriented rock (aor)', 'piano', 'hard rock', 'uk 9401 pop', 'orchestral', 'pop-rock', 'theme song', 'ballad', 'piano', 'power pop', 'seventies', 'soundtrack 9402 pop 9403 r&b', 'seventies', 'disco', 'funk', 'soul 9404 r&b', 'disco', 'soul 9405 pop 9406 r&b', 'seventies', 'uk', 'funk', 'disco 9407 pop 9408 pop', 'disco 9409 pop 9410 rock', 'southern rock 9411 pop 9412 pop 9413 pop', 'easy listening', 'soft rock', 'yacht rock', 'pop-rock', 'funk', 'singer-songwriter', 'seventies 9414 country 9415 rock', 'pop', 'australia 9416 pop', 'euro-disco', 'hi-nrg', 'synth-pop', 'seventies', 'disco', 'electronic', 'dance-pop', 'dance', 'electro-pop 9417 country', 'rock', 'seventies 9418 pop 9419 pop', 'r&b', 'ballad', 'soul', 'soul pop', 'disco', 'seventies 9420 rock 9421 pop 9422 pop 9423 rock 9424 rock', 'pop', 'seventies', 'yacht rock 9425 country', 'piano', 'soundtrack 9426 pop 9427 rock', 'hard rock', 'glam rock 9428 r&b', 'pop', 'soul pop', 'soul', 'disco', 'funk-pop', 'funk 9429 rock', 'pop-rock', 'british rock', 'uk', 'funk rock', 'progressive rock', 'seventies 9430 pop', 'cover', 'disco 9431 pop 9432 r&b', 'pop', 'orchestral', 'seventies', 'ballad', 'soul', 'funk', 'disco 9433 country 9434 rock 9435 pop 9436 pop 9437 pop', 'r&b', 'seventies', 'funk-pop', 'funk rock', 'motown', 'soul', 'soul pop', 'disco', 'funk 9438 pop', 'r&b', 'seventies', 'motown', 'singer-songwriter', 'funk', 'disco', 'soul pop', 'soul 9439 pop 9440 pop 9441 pop 9442 rock', 'piano', 'power pop', 'seventies', 'ballad', 'easy listening', 'blue-eyed soul', 'yacht rock', 'singer-songwriter 9443 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 9444 pop', 'seventies', 'deutschland 9445 pop 9446 pop', 'piano', 'adult contemporary', 'ballad 9447 rock', 'pop', 'seventies', 'adult contemporary', 'easy listening', 'soft rock', 'yacht rock 9448 pop 9449 r&b', 'funk rock', 'funk 9450 pop 9451 pop 9452 rock 9453 rap', 'québec rap', 'québec 9454 pop 9455 country', 'rock', 'pop', 'seventies', 'blues rock 9456 pop 9457 pop 9458 pop 9459 pop', 'cover', 'ballad', 'seventies 9460 pop 9461 rap', 'freestyle', 'covid-19', 'charity 9462 pop 9463 country', 'folk rock 9464 pop 9465 rock', 'pop', 'uk 9466 pop 9467 pop 9468 rap 9469 pop 9470 rock', 'pop-rock', 'easy listening', 'soft rock', 'seventies', 'yacht rock 9471 pop', 'rock', 'seventies', 'easy listening', 'soft rock', 'uk', 'singer-songwriter', 'adult contemporary', 'pop-rock 9472 rock', 'hard rock 9473 rock', 'yacht rock', 'synth rock', 'album-oriented rock (aor)', 'ballad', 'soundtrack', 'seventies 9474 pop 9475 pop', 'seventies', 'pop-rock', 'gospel 9476 pop 9477 rock 9478 pop', 'country', 'rock', 'easy listening', 'ballad', 'seventies', 'soundtrack', 'adult contemporary', 'singer-songwriter', 'pop-rock 9479 pop 9480 rock', 'soft rock', 'seventies', 'singer-songwriter', 'yacht rock', 'easy listening', 'adult contemporary', 'pop-rock 9481 r&b 9482 pop 9483 pop 9484 rock', 'pop 9485 pop 9486 pop', 'pop-rock 9487 pop 9488 rock', 'jazz', 'latin rock 9489 r&b', 'pop', 'seventies', 'funk', 'disco', 'soul', 'soul pop 9490 pop 9491 rock 9492 r&b', 'soul 9493 pop 9494 rock', 'adult alternative', 'uk', 'yacht rock', 'soft rock', 'singer-songwriter', 'album-oriented rock (aor)', 'adult contemporary', 'pop-rock', 'seventies', 'funk rock 9495 rock 9496 rock', 'pop', 'seventies 9497 pop', 'country', 'rock', 'pop country', 'piano', 'seventies 9498 pop 9499 pop 9500 r&b', 'disco', 'funk', 'soul 9501 pop 9502 rock', 'pop', 'piano', 'soft rock', 'seventies', 'singer-songwriter', 'adult contemporary', 'soundtrack', 'chill', 'easy listening', 'yacht rock 9503 pop 9504 pop 9505 rap', 'freestyle', 'covid-19', 'charity 9506 rock 9507 pop', 'baroque pop', 'scandipop', 'scandinavia', 'sverige', 'svensk rock', 'seventies', 'pop-rock 9508 pop 9509 pop 9510 pop', 'rock', 'piano rock', 'pop-rock', 'piano', 'british rock', 'album-oriented rock (aor)', 'uk', 'seventies', 'hard rock 9511 rock', 'country 9512 pop 9513 rock', 'soft rock', 'pop-rock', 'baroque pop', 'british rock', 'seventies', 'uk 9514 pop 9515 pop 9516 pop', 'disco 9517 pop 9518 r&b 9519 pop', 'r&b', 'seventies', 'motown', 'singer-songwriter', 'funk', 'soul pop', 'soul 9520 pop', 'r&b', 'soul', 'motown', 'soul pop', 'seventies 9521 country 9522 pop 9523 rock 9524 pop', 'soul pop', 'adult alternative', 'dream pop', 'alternative pop', 'alternative', 'funk-pop', 'funk', 'cover', 'jazz 9525 country', 'rock 9526 pop 9527 pop 9528 rock', 'progressive rock 9529 pop', 'piano', 'adult contemporary', 'ballad 9530 rock 9531 pop', 'rock', 'jazz fusion', 'jazz', 'piano', 'chill', 'easy listening', 'seventies', 'ballad', 'adult contemporary', 'singer-songwriter', 'pop-rock 9532 pop 9533 pop', 'seventies', 'disco 9534 pop 9535 pop', 'rock', 'seventies', 'art pop', 'baroque pop', 'art rock', 'uk 9536 pop', 'rock', 'seventies 9537 pop 9538 pop', 'seventies', 'yacht rock', 'ballad', 'adult contemporary 9539 pop', 'rock', 'singer-songwriter', 'seventies', 'smooth jazz', 'yacht rock', 'adult alternative', 'adult contemporary', 'funk rock', 'pop-rock', 'jazz fusion 9540 pop 9541 r&b 9542 pop', 'soundtrack 9543 rock', 'pop', 'r&b', 'cover', 'seventies', 'disco', 'funk 9544 r&b', 'rock', 'seventies', 'jazz', 'easy listening', 'acoustic', 'piano', 'adult alternative', 'northern ireland', 'yacht rock', 'jazz fusion', 'singer-songwriter', 'ireland 9545 pop 9546 pop', 'orchestral', 'singer-songwriter', 'ballad', 'seventies 9547 rock', 'progressive rock 9548 pop 9549 pop 9550 pop 9551 pop', 'colombia', 'latin music', 'latin pop 9552 rock 9553 pop 9554 rock 9555 pop', 'comedy 9556 pop 9557 rock', 'seventies', 'punk rock', 'alternative rock 9558 pop', 'seventies', 'uk', 'soundtrack', 'memes', 'disco 9559 r&b', 'soft rock', 'singer-songwriter', 'seventies', 'smooth jazz', 'soul 9560 rock 9561 r&b', 'disco', 'funk 9562 rock 9563 pop 9564 pop 9565 pop 9566 pop 9567 r&b', 'funk', 'soul 9568 country 9569 rap 9570 pop 9571 rock', 'yacht rock 9572 rock', 'pop', 'australia 9573 pop 9574 rock', 'seventies', 'soft rock', 'pop-rock', 'british rock', 'uk 9575 pop', 'rock', 'scandipop', 'sverige', 'seventies', 'pop-rock 9576 pop 9577 country', 'ballad', 'gospel 9578 pop 9579 rap 9580 rock', 'seventies', 'singer-songwriter', 'alternative country 9581 r&b', 'seventies', 'uk', 'soul 9582 rock', 'soul', 'p-funk 9583 r&b', 'pop', 'funk', 'soul', 'funk-pop', 'soul pop 9584 rock 9585 rap 9586 pop 9587 r&b', 'pop 9588 pop 9589 pop 9590 r&b', 'pop', 'seventies', 'soul pop', 'soul 9591 pop', 'disco 9592 pop 9593 r&b 9594 pop', 'r&b', 'ballad', 'orchestral', 'soul', 'soul pop', 'disco', 'seventies 9595 pop 9596 pop', 'soul pop 9597 pop 9598 pop 9599 pop 9600 pop', 'dance', 'disco', 'synth-pop 9601 rock', 'pop 9602 rock', 'heartland rock', 'pop-rock', 'progressive rock', 'acoustic 9603 pop 9604 pop', 'rock', 'adult contemporary', 'soundtrack', 'seventies', 'disco 9605 rock', 'heavy metal', 'hard rock 9606 pop 9607 pop 9608 pop', 'pop-rock', 'seventies', 'soft rock', 'piano 9609 r&b', 'pop', 'soundtrack', 'uk', 'seventies', 'singer-songwriter', 'disco 9610 r&b 9611 pop 9612 pop 9613 pop 9614 pop 9615 pop 9616 rock', 'singer-songwriter', 'heartland rock 9617 rock', 'tv', 'screen', 'theme song', 'seventies 9618 country', 'seventies 9619 rock', 'uk 9620 pop', 'disco 9621 pop 9622 pop 9623 rock', 'orchestral', 'pop-rock', 'soft rock', 'jazz fusion', 'seventies 9624 pop', 'funk 9625 pop 9626 rock', 'uk 9627 rock', 'art rock', 'glam rock 9628 rap 9629 pop 9630 rock', 'seventies', 'art-punk', 'funk rock', 'new wave', 'post-punk 9631 rock', 'seventies 9632 rock', 'singer-songwriter', 'album-oriented rock (aor)', 'seventies', 'pop-rock 9633 pop 9634 country', 'rock 9635 rock', 'hard rock 9636 r&b', 'funk rock', 'funk 9637 rock 9638 country', 'pop 9639 pop', 'r&b', 'orchestral', 'ballad', 'soul', 'funk', 'disco', 'seventies 9640 rock', 'pop', 'seventies', 'yacht rock 9641 r&b', 'yacht rock', 'ballad', 'soul 9642 pop 9643 pop', 'ballad', 'retro', 'easy listening 9644 pop 9645 r&b', 'pop', 'soul', 'soul pop', 'disco', 'motown', 'seventies 9646 pop', 'disco 9647 pop', 'disco 9648 rap 9649 country', 'pop 9650 pop 9651 pop', 'jazz fusion', 'seventies', 'easy listening', 'yacht rock 9652 r&b', 'pop', 'cover', 'smooth jazz', 'soul jazz', 'jazz', 'soul pop', 'soul', 'adult contemporary', 'musicals', 'soundtrack 9653 rap 9654 rock 9655 rock 9656 pop 9657 r&b 9658 rock 9659 pop 9660 country', 'rock 9661 rock', 'singer-songwriter', 'seventies', 'piano', 'adult contemporary', 'pop-rock 9662 pop 9663 pop 9664 rock', 'pop-rock', 'hard rock', 'progressive rock', 'ballad', 'seventies 9665 pop', 'r&b', 'ballad', 'orchestral', 'soul', 'soul pop', 'disco', 'seventies 9666 rock', 'pop', 'soft rock', 'yacht rock', 'british rock', 'pop-rock', 'seventies', 'uk', 'singer-songwriter 9667 pop 9668 pop', 'rock', 'piano', 'seventies', 'soft rock', 'halloween 9669 country', 'rock', 'uk', 'seventies 9670 pop 9671 rock', 'pop', 'pop-rock', 'soft rock', 'seventies', 'yacht rock 9672 pop', 'seventies', 'soundtrack', 'disco', 'musicals 9673 rock', 'pop 9674 pop 9675 rock', 'singer-songwriter', 'seventies', 'smooth jazz', 'yacht rock', 'adult alternative', 'jazz fusion', 'jazz', 'pop-rock 9676 pop 9677 pop 9678 pop', 'disco', 'funk', 'soul 9679 pop 9680 rap', 'trap 9681 rock', 'singer-songwriter', 'seventies 9682 pop 9683 rock', 'seventies', 'hard rock 9684 pop 9685 r&b', 'funk 9686 pop 9687 pop', 'disco', 'seventies', 'uk', 'singer-songwriter 9688 rock 9689 pop 9690 pop 9691 rock', 'pop', 'soul pop', 'soul', 'soft rock', 'smooth jazz', 'jazz fusion', 'yacht rock', 'seventies', 'singer-songwriter', 'cover', 'pop-rock', 'blue-eyed soul 9692 rock', 'seventies', 'alternative rock', 'cover', 'punk rock 9693 pop', 'rock', 'scandipop', 'scandinavia', 'svensk rock', 'sverige', 'seventies', 'pop-rock 9694 rock', 'pop 9695 rock', 'album-oriented rock (aor)', 'adult contemporary', 'singer-songwriter', 'easy listening', 'pop-rock', 'jazz fusion', 'soundtrack', 'seventies', 'yacht rock 9696 pop', 'rock', 'british rock', 'synth rock', 'progressive rock', 'new wave', 'ballad', 'soft rock', 'uk', 'adult contemporary', 'easy listening', 'seventies', 'pop-rock 9697 pop 9698 country', 'singer-songwriter', 'seventies', 'pop country', 'pop-rock', 'folk rock 9699 pop 9700 pop 9701 r&b', 'pop', 'seventies', 'piano', 'disco 9702 rock', 'retro 9703 pop 9704 rock', 'soft rock', 'pop-rock', 'uk 9705 rap 9706 pop 9707 pop', 'r&b', 'funk', 'soul', 'soul pop 9708 pop 9709 r&b', 'pop', 'orchestral', 'seventies', 'ballad', 'soul', 'disco 9710 rock', 'french rock', 'en français', 'pop-punk', 'new wave', 'punk rock', 'france 9711 pop', 'soundtrack', 'uk', 'seventies', 'funk', 'disco 9712 pop 9713 pop 9714 r&b', 'pop', 'soul', 'soul pop', 'motown', 'seventies 9715 pop 9716 pop 9717 pop', 'rock', 'glam rock', 'heavy metal', 'metal', 'hard rock 9718 pop', 'rock', 'singer-songwriter', 'adult contemporary', 'pop-rock 9719 rock 9720 rock', 'british rock', 'uk', 'soft rock', 'yacht rock', 'adult contemporary', 'blues rock', 'singer-songwriter', 'art rock', 'seventies', 'ballad 9721 pop 9722 r&b', 'disco 9723 pop 9724 rock', 'uk', 'seventies', 'blues rock', 'hard rock 9725 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 9726 rock', 'adult contemporary', 'funk rock', 'pop-rock', 'yacht rock', 'seventies', 'jazz fusion 9727 pop 9728 r&b', 'pop', 'seventies', 'soul', 'soul pop 9729 rap 9730 rock', 'seventies', 'soundtrack', 'funk rock', 'disco', 'musicals 9731 rock', 'dance rock', 'soul', 'funk rock', 'album-oriented rock (aor)', 'singer-songwriter', 'funk', 'seventies', 'adult alternative', 'blues rock', 'disco', 'british rock', 'uk 9732 pop 9733 rock', 'pop', 'soft rock', 'piano', 'ballad', 'seventies', 'easy listening', 'singer-songwriter', 'yacht rock 9734 rock', 'pop', 'singer-songwriter', 'ballad', 'adult contemporary', 'easy listening', 'pop-rock', 'seventies', 'yacht rock 9735 pop', 'rock', 'soft rock 9736 rock 9737 country 9738 rock', 'adult alternative', 'album-oriented rock (aor)', 'soundtrack', 'seventies', 'jazz rock', 'jazz fusion', 'yacht rock 9739 pop 9740 rock', 'pop', 'easy listening', 'adult contemporary', 'seventies', 'yacht rock 9741 pop 9742 pop 9743 pop 9744 rock 9745 rap 9746 rock', 'pop', 'disco', 'deutschland', 'seventies 9747 pop 9748 country', 'pop 9749 rock 9750 pop', 'samba', 'seventies', 'disco 9751 rock', 'seventies', 'album-oriented rock (aor)', 'blues rock', 'reggae rock', 'hard rock 9752 rock 9753 rock', 'pop-rock', 'piano rock', 'piano', 'heartland rock', 'singer-songwriter', 'seventies', 'power pop 9754 pop', 'deutschland', 'synth-pop', 'electronic 9755 rock 9756 rock', 'progressive rock 9757 rock', 'pop-rock 9758 r&b', 'funk', 'disco', 'dance 9759 pop 9760 pop 9761 r&b', 'ballad', 'seventies', 'soul', 'singer-songwriter', 'motown 9762 rock', 'pop', 'singer-songwriter', 'uk', 'seventies 9763 pop 9764 rock 9765 pop 9766 r&b', 'pop', 'seventies', 'funk', 'dance', 'dance-pop', 'soul pop', 'disco 9767 rock', 'new wave', 'singer-songwriter', 'seventies', 'synth-pop', 'power pop', 'pop-rock 9768 rap 9769 pop', 'rock', 'symphonic rock', 'british rock', 'seventies', 'soundtrack', 'progressive rock', 'pop-rock', 'art rock', 'uk 9770 r&b', 'soul', 'seventies', 'disco 9771 rock 9772 r&b', 'pop', 'disco 9773 rock 9774 pop 9775 country 9776 pop 9777 rock 9778 pop 9779 rock', 'seventies', 'hard rock 9780 pop', 'r&b', 'motown', 'disco', 'funk-pop', 'seventies', 'funk 9781 country 9782 pop 9783 pop 9784 rock', 'ballad', 'soundtrack', 'seventies', 'musicals 9785 r&b', 'soul 9786 rock', 'country', 'disco', 'soft rock', 'yacht rock', 'seventies 9787 pop', 'disco 9788 rock', 'pop', 'baroque pop', 'piano', 'adult contemporary', 'easy listening', 'ballad', 'yacht rock', 'seventies', 'singer-songwriter', 'soft rock', 'pop-rock 9789 rap 9790 pop 9791 pop', 'disco 9792 country 9793 country 9794 pop', 'screen', 'disney', 'soundtrack 9795 pop 9796 pop', 'seventies 9797 pop 9798 rock', 'power pop', 'soundtrack', 'glam rock', 'seventies', 'hard rock 9799 pop', 'disco 9800 pop 9801 pop 9802 rap 9803 rock 9804 pop 9805 pop 9806 rock', 'pop', 'australia', 'seventies', 'yacht rock', 'easy listening', 'adult contemporary', 'pop-rock 9807 pop 9808 country 9809 pop 9810 pop 9811 pop 9812 country 9813 pop 9814 pop', 'seventies', 'musicals 9815 rock', 'pop', 'seventies', 'soundtrack', 'cover 9816 pop 9817 pop 9818 pop 9819 pop 9820 pop 9821 pop', 'doo-wop', 'screen', 'soundtrack', 'cover 9822 rock 9823 pop', 'rock', 'piano', 'album-oriented rock (aor)', 'seventies', 'yacht rock', 'producer', 'easy listening', 'singer-songwriter', 'adult contemporary', 'adult alternative', 'blues rock', 'ballad', 'pop-rock 9824 pop 9825 rock', 'pop-rock', 'seventies', 'rockabilly', 'hard rock', 'glam rock', 'progressive rock 9826 rock', 'art rock', 'glam rock 9827 pop', 'rock', 'soft rock', 'seventies', 'easy listening', 'ballad', 'adult contemporary', 'pop-rock', 'singer-songwriter', 'acoustic', 'piano 9828 pop 9829 r&b', 'pop', 'funk', 'funk-pop', 'disco', 'dance-pop', 'seventies 9830 country', 'seventies', 'singer-songwriter', 'pop-rock', 'folk rock 9831 pop 9832 rock 9833 pop 9834 rock', 'seventies', 'hard rock', 'progressive rock', 'album-oriented rock (aor) 9835 rock 9836 country', 'traditional folk', 'folk 9837 rock', 'pop', 'pop-rock 9838 rock', 'heartland rock', 'folk rock', 'singer-songwriter', 'seventies 9839 pop', 'disco', 'dance 9840 pop', 'r&b', 'soul', 'soul pop', 'disco 9841 rock', 'hard rock', 'seventies', 'singer-songwriter 9842 pop 9843 rock', 'singer-songwriter', 'seventies', 'pop-rock', 'hard rock 9844 rock', 'pop', 'seventies', 'pop-rock', 'album-oriented rock (aor)', 'adult alternative', 'yacht rock', 'smooth jazz', 'jazz fusion', 'jazz 9845 country', 'rock 9846 rock', 'pop', 'pop-rock 9847 pop 9848 pop 9849 pop 9850 pop 9851 rock', 'pop-rock', 'easy listening', 'adult contemporary', 'soft rock', 'seventies', 'yacht rock 9852 country', 'pop 9853 pop 9854 rock', 'soul', 'british rock', 'seventies', 'album-oriented rock (aor)', 'blues rock', 'uk 9855 rock', 'singer-songwriter', 'uk', 'seventies 9856 rock', 'r&b', 'pop', 'seventies', 'soundtrack 9857 pop 9858 pop 9859 pop 9860 r&b', 'seventies', 'cover', 'disco 9861 rock', 'seventies', 'yacht rock', 'singer-songwriter 9862 pop 9863 pop 9864 pop 9865 rock 9866 country', 'rock', 'reggae', 'ska', 'seventies', 'pop-rock', 'yacht rock 9867 pop 9868 pop 9869 pop 9870 rock 9871 rock', 'uk', 'sixties', 'british rock', 'pop-rock', 'psychedelic', 'art rock', 'psychedelic rock 9872 pop 9873 pop', 'blue-eyed soul', 'disco 9874 rock 9875 pop 9876 r&b', 'soul', 'funk 9877 pop', 'soul', 'disco 9878 rock 9879 pop 9880 r&b', 'pop 9881 pop 9882 rock', 'soundtrack', 'musicals 9883 rock', 'singer-songwriter', 'seventies', 'yacht rock 9884 rock', 'pop', 'seventies', 'yacht rock 9885 pop 9886 pop 9887 rock', 'singer-songwriter', 'seventies', 'funk', 'ska', 'reggae rock', 'reggae', 'yacht rock 9888 rap', 'italy 9889 pop 9890 pop 9891 rock', 'seventies', 'soundtrack', 'pop-rock', 'hard rock 9892 r&b 9893 pop', 'r&b', 'nineties', 'house', 'deep house', 'cover', 'soundtrack', 'dance-pop', 'dance', 'soul pop', 'soul 9894 pop 9895 pop 9896 pop 9897 pop', 'ballad', 'disco 9898 pop 9899 pop 9900 rock', 'seventies 9901 pop', 'disco 9902 r&b', 'soul 9903 rock', 'pop-rock', 'yacht rock', 'funk rock', 'jazz fusion', 'seventies 9904 rock', 'pop 9905 pop', 'disco 9906 country 9907 rock', 'pop-rock', 'synth-pop', 'new wave', 'rockabilly', 'power pop 9908 pop 9909 r&b', 'pop', 'dance', 'seventies', 'memes', 'disco 9910 pop 9911 pop 9912 rock 9913 r&b', 'seventies', 'funk', 'disco 9914 pop 9915 pop 9916 rock', 'art rock', 'uk 9917 rap 9918 r&b 9919 pop', 'funk', 'soul 9920 rock', 'pop', 'piano', 'singer-songwriter', 'seventies', 'yacht rock', 'pop-rock', 'theme song 9921 pop', 'r&b', 'cover', 'seventies', 'soul', 'soul pop', 'funk', 'disco 9922 pop', 'r&b', 'motown', 'soul', 'ballad', 'funk-pop', 'funk rock', 'seventies 9923 country', 'seventies 9924 pop', 'ballad 9925 pop 9926 pop 9927 rock', 'album-oriented rock (aor)', 'adult alternative', 'blues rock', 'funk rock', 'seventies', 'cover', 'new wave 9928 r&b 9929 pop', 'r&b', 'funk', 'electro-funk', 'soul', 'disco 9930 r&b', 'pop', 'cover', 'soul', 'soul pop 9931 pop', 'rock', 'disco', 'funk rock', 'pop-rock 9932 pop 9933 pop', 'soul', 'funk', 'soul pop 9934 pop 9935 pop 9936 rock 9937 rock 9938 rock', 'pop-rock', 'hard rock', 'progressive rock', 'seventies 9939 r&b', 'pop', 'seventies', 'adult contemporary', 'uk', 'easy listening', 'ballad', 'singer-songwriter 9940 r&b', 'singer-songwriter', 'seventies', 'soul pop', 'adult contemporary', 'pop-rock', 'soul', 'funk', 'disco 9941 rock', 'album-oriented rock (aor)', 'hard rock', 'seventies', 'progressive rock 9942 pop 9943 rap 9944 pop 9945 r&b', 'seventies', 'orchestral', 'ballad', 'soul', 'disco 9946 pop', 'disco 9947 pop 9948 country 9949 pop', 'seventies', 'smooth jazz', 'blue-eyed soul', 'pop-rock', 'yacht rock 9950 pop 9951 pop', 'christian 9952 pop 9953 pop', 'r&b', 'funk', 'soul pop', 'seventies', 'soul', 'disco 9954 pop 9955 rock 9956 rock', 'christian metal', 'metalcore 9957 pop 9958 country', 'singer-songwriter', 'pop-rock', 'folk rock', 'seventies 9959 pop 9960 country', 'rock', 'seventies', 'christmas 9961 r&b', 'soul', 'funk 9962 pop 9963 pop 9964 pop 9965 r&b', 'soul 9966 pop', 'country', 'disco', 'dance 9967 pop 9968 pop 9969 pop', 'easy listening', 'piano 9970 rock', 'uk 9971 pop 9972 rock 9973 r&b', 'soul', 'disco 9974 r&b', 'pop', 'piano', 'seventies', 'soul pop', 'soul', 'disco 9975 pop 9976 pop 9977 pop', 'power pop', 'folk rock 9978 pop', 'disco 9979 pop', 'rock', 'synth rock', 'memes', 'dance rock', 'funk', 'funk-pop', 'seventies', 'singer-songwriter', 'british rock', 'pop-rock', 'uk', 'disco 9980 rock 9981 rock', 'soft rock', 'seventies', 'jazz fusion', 'yacht rock 9982 r&b', 'piano', 'soft rock', 'singer-songwriter', 'easy listening', 'seventies', 'smooth jazz', 'yacht rock', 'adult contemporary', 'soul pop', 'soul', 'soul jazz', 'jazz fusion', 'funk', 'jazz', 'blue-eyed soul 9983 pop 9984 pop 9985 pop 9986 pop 9987 pop', 'deutschland', 'christmas', 'seventies 9988 rap', 'battle rap 9989 pop 9990 rock 9991 pop 9992 pop 9993 r&b', 'pop', 'disco 9994 r&b', 'pop', 'seventies', 'disco', 'soul pop 9995 pop 9996 rock', 'seventies', 'australia', 'yacht rock 9997 rap 9998 pop', 'r&b', 'seventies', 'disco', 'dance 9999 pop 10000 pop 10001 pop 10002 pop 10003 rock', 'ballad', 'seventies', 'yacht rock 10004 pop', 'rock', 'album-oriented rock (aor)', 'adult contemporary', 'blue-eyed soul', 'singer-songwriter', 'seventies', 'yacht rock', 'pop-rock 10005 pop 10006 r&b 10007 rock 10008 country 10009 country 10010 pop 10011 pop 10012 country 10013 rock 10014 country', 'rock', 'seventies 10015 pop 10016 pop 10017 pop', 'hi-nrg', 'cover', 'seventies', 'disco 10018 pop 10019 pop 10020 r&b 10021 rock', 'pop', 'uk', 'pop-rock', 'seventies', 'soft rock 10022 pop 10023 rock', 'pop 10024 country', 'rock 10025 rock', 'folk rock', 'folk 10026 pop 10027 r&b', 'rap', 'seventies', 'dance', 'go-go', 'funk 10028 r&b 10029 pop', 'rock', 'power pop 10030 rock', 'pop', 'uk', 'singer-songwriter', 'disco 10031 rock', 'seventies', 'adult alternative', 'uk', 'british rock', 'blues rock 10032 rock', 'pop', 'pop-rock', 'seventies', 'singer-songwriter 10033 r&b', 'pop', 'seventies', 'funk', 'soul', 'disco 10034 pop', 'seventies', 'disco 10035 pop', 'cover 10036 pop 10037 pop 10038 pop 10039 pop', 'seventies', 'soul pop', 'dance', 'disco 10040 pop', 'reggae', 'disco 10041 r&b', 'disco 10042 r&b', 'pop', 'seventies', 'soul', 'funk', 'soul pop', 'disco 10043 pop', 'rock', 'pop-rock', 'singer-songwriter', 'new wave', 'disco', 'seventies 10044 pop', 'synth-pop', 'electronic', 'dance', 'disco 10045 pop 10046 rock', 'piano', 'piano rock', 'british rock', 'baroque pop', 'soundtrack', 'uk', 'seventies', 'pop-rock', 'hard rock 10047 rock', 'pop', 'pop-rock', 'singer-songwriter', 'seventies', 'uk', 'piano', 'baroque pop', 'art pop 10048 pop', 'disco 10049 r&b', 'soul', 'disco 10050 rap', 'battle rap 10051 pop 10052 pop 10053 rock', 'post-punk', 'album-oriented rock (aor)', 'adult alternative', 'pop-rock', 'reggae rock', 'ska', 'seventies', 'piano', 'british rock', 'uk', 'reggae', 'new wave 10054 rap', 'battle rap 10055 rap 10056 rock 10057 r&b', 'rock', 'funk 10058 pop', 'soundtrack 10059 pop 10060 r&b', 'jazz', 'swing', 'big band 10061 r&b', 'soul 10062 rock 10063 r&b', 'pop', 'disco', 'blue-eyed soul 10064 rock 10065 rock 10066 rock', 'yacht rock 10067 rap 10068 pop 10069 pop', 'remix', 'seventies', 'funk', 'disco 10070 pop 10071 r&b', 'pop', 'seventies', 'disco 10072 rock', 'singer-songwriter', 'album-oriented rock (aor)', 'hard rock', 'glam rock', 'seventies 10073 rock', 'synth rock 10074 r&b', 'soul', 'adult contemporary', 'easy listening', 'seventies', 'ballad 10075 r&b', 'pop', 'girl group', 'funk', 'disco', 'soul', 'soul pop 10076 pop 10077 pop 10078 r&b', 'disco 10079 country 10080 rock', 'pop', 'power pop', 'glam rock', 'pop-rock', 'new wave 10081 rock', 'pop 10082 pop', 'disco 10083 rap 10084 pop', 'cover 10085 pop 10086 rock', 'progressive rock', 'soft rock', 'seventies', 'hard rock 10087 pop 10088 pop 10089 rock', 'seventies', 'british rock', 'synth-pop', 'synth rock', 'adult alternative', 'art pop', 'progressive rock', 'pop-rock 10090 pop 10091 pop 10092 r&b', 'pop', 'ballad', 'soul', 'motown', 'funk', 'disco', 'seventies 10093 rock', 'funk rock', 'funk', 'soundtrack', 'pop-rock', 'uk', 'singer-songwriter', 'seventies', 'disco 10094 pop 10095 r&b', 'soul', 'funk', 'disco 10096 pop 10097 pop', 'disco 10098 rock 10099 pop 10100 pop 10101 pop 10102 rock', 'album-oriented rock (aor)', 'seventies 10103 pop 10104 pop 10105 pop 10106 pop 10107 pop 10108 r&b', 'motown', 'seventies', 'soul', 'funk-pop', 'soul pop', 'disco', 'funk 10109 pop 10110 pop 10111 rock', 'ballad', 'seventies 10112 pop 10113 pop 10114 rock', 'dance rock', 'album-oriented rock (aor)', 'disco', 'live', 'seventies', 'comedy', 'progressive rock 10115 rock', 'seventies', 'yacht rock 10116 pop', 'disco 10117 pop', 'girl group', 'disco 10118 pop 10119 rock', 'pop', 'pop-rock', 'seventies', 'adult contemporary', 'piano', 'singer-songwriter', 'ballad 10120 pop', 'uk 10121 pop', 'rock', 'pop-rock', 'dance rock', 'seventies', 'disco 10122 pop 10123 pop 10124 country 10125 rock', 'pop', 'r&b', 'seventies', 'disco', 'soul 10126 rock', 'pop', 'smooth jazz', 'soul pop', 'blue-eyed soul', 'jazz', 'yacht rock', 'adult contemporary', 'jazz fusion', 'pop-rock 10127 rock', 'dance', 'hard rock 10128 pop 10129 rock', 'dancehall', 'album-oriented rock (aor)', 'seventies', 'power pop', 'hard rock 10130 r&b', 'rock', 'piano', 'funk rock', 'funk', 'disco', 'blue-eyed soul', 'soul', 'seventies', 'yacht rock 10131 r&b', 'funk', 'disco 10132 rock 10133 r&b', 'funk 10134 pop', 'musicals 10135 country 10136 rock', 'pop', 'uk', 'pop-rock', 'soft rock 10137 pop 10138 pop 10139 pop', 'disco 10140 pop 10141 rock', 'pop', 'seventies', 'yacht rock', 'blue-eyed soul', 'pop-rock 10142 rock 10143 pop 10144 pop 10145 r&b', 'disco 10146 pop', 'satire 10147 pop 10148 rock', 'seventies', 'yacht rock 10149 pop 10150 r&b', 'seventies', 'funk-pop', 'disco', 'motown', 'funk', 'soul pop 10151 pop', 'synth-pop', 'seventies', 'disco 10152 rock 10153 pop', 'seventies', 'blues rock 10154 pop', 'rock', 'scandipop', 'svensk rock', 'sverige', 'scandinavia', 'seventies', 'pop-rock', 'disco 10155 rock 10156 rock', 'pop', 'seventies', 'yacht rock 10157 pop 10158 pop', 'power pop 10159 pop 10160 rock 10161 r&b', 'pop', 'disco', 'seventies 10162 rock', 'dance rock', 'hard rock', 'seventies', 'glam metal', 'glam rock', 'disco 10163 country 10164 rock', 'singer-songwriter 10165 rock 10166 pop 10167 rock', 'pop 10168 r&b', 'pop', 'dance-pop', 'disco 10169 r&b 10170 pop 10171 pop 10172 pop', 'disco', 'seventies 10173 pop 10174 rock', 'album-oriented rock (aor)', 'pop-rock', 'seventies', 'soundtrack', 'punk rock', 'power pop', 'new wave 10175 pop 10176 country', 'rock 10177 pop', 'disco 10178 pop', 'seventies 10179 pop', 'japan 10180 pop', 'uk', 'blue-eyed soul', 'soul pop', 'soul', 'disco 10181 rock', 'new wave', 'power pop 10182 rock', 'pop', 'pop-rock 10183 country 10184 pop 10185 country 10186 rock', 'british rock', 'singer-songwriter', 'pop-rock', 'power pop', 'seventies 10187 pop', 'r&b', 'piano', 'seventies', 'funk', 'disco 10188 pop 10189 r&b', 'pop', 'funk', 'soul', 'soul pop 10190 pop 10191 rock', 'hard rock 10192 pop', 'gospel', 'soul', 'disco 10193 rock 10194 country', 'rock', 'southern rock', 'soundtrack', 'seventies', 'bluegrass 10195 r&b', 'pop', 'ballad', 'easy listening', 'soul', 'soul pop', 'seventies 10196 rock', 'southern rock', 'blues rock', 'hard rock 10197 pop', 'disco 10198 pop 10199 rock', 'singer-songwriter', 'power pop', 'seventies', 'new wave 10200 pop 10201 pop', 'funk', 'disco 10202 rap', 'uk drill', 'uk rap', 'uk 10203 pop', 'french pop', 'france', 'latin pop', 'seventies', 'disco 10204 rock', 'singer-songwriter', 'seventies', 'new wave 10205 pop 10206 country', 'rock 10207 pop 10208 rock 10209 r&b', 'pop 10210 pop', 'live broadcast', 'news ', 'musicals 10211 pop 10212 r&b', 'pop', 'yacht rock', 'soul', 'ballad 10213 pop', 'rock', 'seventies', 'soundtrack', 'synth-pop', 'synth rock', 'pop-rock 10214 pop', 'power pop 10215 pop 10216 pop 10217 pop 10218 rock 10219 pop', 'soundtrack 10220 r&b', 'disco 10221 pop 10222 pop 10223 rock', 'seventies 10224 pop 10225 rock', 'pop', 'adult alternative', 'uk', 'british rock', 'progressive rock', 'new wave', 'glam rock', 'pop-rock 10226 r&b 10227 pop 10228 rock', 'album-oriented rock (aor)', 'glam rock', 'blues rock', 'seventies', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'pop-rock', 'hard rock 10229 rock 10230 r&b', 'pop', 'soul', 'disco', 'soul pop 10231 r&b 10232 pop 10233 rock 10234 pop 10235 pop 10236 pop 10237 rock', 'seventies', 'power pop 10238 pop', 'power pop', 'pop-rock', 'new wave 10239 r&b', 'pop', 'funk-pop', 'dance-pop', 'soul', 'soul pop', 'singer-songwriter', 'seventies', 'funk', 'dance', 'disco 10240 rock 10241 pop 10242 pop 10243 rock', 'british rock', 'uk', 'seventies', 'synth-pop', 'glam rock', 'pop-rock 10244 pop 10245 pop 10246 r&b', 'funk 10247 rock', 'pop', 'cover', 'yacht rock', 'adult contemporary', 'seventies', 'soft rock', 'pop-rock 10248 pop 10249 pop', 'rock', 'singer-songwriter', 'electro-pop', 'synth-pop', 'disco', 'seventies', 'memes', 'new wave 10250 r&b', 'piano', 'yacht rock', 'seventies', 'soul', 'motown 10251 rock 10252 rock', 'pop', 'pop-rock 10253 pop', 'indie pop 10254 pop 10255 r&b 10256 pop 10257 rock', 'pop', 'yacht rock 10258 pop', 'blues 10259 pop 10260 rock 10261 pop 10262 pop 10263 pop 10264 pop 10265 rock 10266 rap 10267 r&b', 'pop', 'disco', 'seventies 10268 pop 10269 rap 10270 pop 10271 rock', 'pop-rock', 'soft rock', 'british rock', 'seventies 10272 pop 10273 r&b', 'disco', 'funk', 'soul 10274 pop', 'rock', 'scandipop', 'scandinavia', 'sverige', 'svensk rock', 'seventies', 'disco', 'pop-rock 10275 pop 10276 rock', 'power pop 10277 rock', 'funk rock', 'seventies 10278 pop 10279 pop 10280 pop 10281 rock 10282 pop', 'disco 10283 rock', 'hard rock 10284 pop 10285 rock', 'pop 10286 rock', 'album-oriented rock (aor)', 'art rock', 'acoustic', 'ballad', 'adult alternative', 'synth rock', 'producer', 'progressive rock 10287 country 10288 pop 10289 pop 10290 rap 10291 rock', 'pop', 'ballad', 'acoustic', 'pop-rock 10292 r&b', 'pop', 'intro', 'piano', 'dark pop', 'synth-pop', 'canada', 'singer-songwriter', 'alternative r&b 10293 rock', 'christian', 'blues rock', 'gospel 10294 pop', 'seventies 10295 pop 10296 pop', 'cover', 'indie rock', 'alternative pop', 'indie pop 10297 rock 10298 pop 10299 r&b', 'funk', 'soul 10300 rap 10301 country', 'cover 10302 pop 10303 pop 10304 pop 10305 pop 10306 pop', 'rock', 'pop-rock', 'disco 10307 pop 10308 pop', 'easy listening', 'adult contemporary', 'seventies', 'singer-songwriter', 'motown', 'piano', 'ballad 10309 rock', 'synth-pop', 'disco 10310 pop', 'rock', 'pop-rock', 'power pop', 'new wave 10311 pop 10312 rock', 'soundtrack 10313 pop 10314 rock', 'pop', 'power pop', 'new wave 10315 country', 'rock 10316 country', 'rock', 'adult contemporary', 'blues rock', 'hard rock 10317 country', 'rock', 'alternative country', 'avant-pop', 'adult alternative', 'alternative', 'alternative rock', 'progressive rock', 'yacht rock', 'pop-rock', 'folk rock', 'seventies', 'soft rock', 'uk', 'art rock 10318 rock', 'pop', 'soft rock', 'singer-songwriter', 'piano', 'soundtrack', 'adult contemporary', 'ballad', 'easy listening', 'yacht rock', 'seventies 10319 rock', 'power pop', 'hard rock 10320 pop 10321 r&b', 'seventies', 'ballad', 'adult contemporary', 'easy listening', 'soul pop', 'soul 10322 pop 10323 r&b', 'pop', 'soul 10324 r&b', 'disco', 'funk', 'seventies 10325 country 10326 rock 10327 pop 10328 pop 10329 country', 'rock 10330 rock', 'blues rock', 'blues', 'seventies', 'adult alternative', 'ballad', 'british rock', 'uk', 'piano', 'art pop', 'progressive rock', 'pop-rock 10331 rock', 'heartland rock 10332 pop 10333 pop 10334 rock', 'seventies', 'marvel', 'australia', 'hard rock 10335 rock', 'new wave 10336 pop 10337 rock 10338 pop 10339 pop 10340 rock', 'pop', 'australia 10341 rock', 'seventies', 'art pop', 'art rock', 'pop-rock 10342 rock', 'pop', 'yacht rock 10343 pop 10344 rock', 'piano', 'blue-eyed soul', 'seventies', 'singer-songwriter', 'yacht rock', 'soul pop', 'soul', 'adult contemporary', 'ballad', 'progressive rock', 'pop-rock 10345 pop', 'rock', 'soundtrack', 'seventies', 'singer-songwriter', 'adult contemporary', 'yacht rock', 'pop-rock 10346 pop', 'soft rock', 'seventies 10347 rock', 'southern rock', 'blues rock', 'hard rock 10348 pop 10349 rock 10350 rock 10351 r&b', 'disco', 'funk', 'soul 10352 pop 10353 pop 10354 rock', 'pop 10355 pop', 'r&b', 'motown', 'singer-songwriter', 'soul', 'soul pop 10356 pop 10357 r&b', 'pop', 'smooth jazz', 'seventies', 'soul pop', 'funk-pop', 'funk', 'disco 10358 pop 10359 pop 10360 pop 10361 pop 10362 rock', 'hard rock 10363 rap 10364 pop 10365 pop 10366 r&b', 'soul 10367 rock 10368 pop', 'rock', 'svensk rock', 'scandipop', 'scandinavia', 'sverige', 'pop-rock 10369 r&b', 'pop', 'ballad', 'easy listening', 'soul pop', 'seventies', 'soul 10370 rap', 'seventies', 'hip-hop', 'electronic', 'disco', 'funk 10371 pop', 'rock', 'uk', 'seventies', 'eighties', 'new wave', 'synth-pop', 'synth rock 10372 pop', 'rock', 'pop-rock', 'singer-songwriter', 'new wave', 'disco', 'seventies 10373 country', 'pop country', 'seventies 10374 rock 10375 pop 10376 pop 10377 pop 10378 rock', 'heavy metal', 'uk', 'hard rock 10379 pop 10380 pop 10381 r&b', 'pop', 'soul pop', 'soul 10382 rock', 'pop', 'pop-rock 10383 pop', 'r&b', 'rock', 'singer-songwriter', 'seventies', 'disco', 'funk 10384 rock', 'ska', 'british rock', 'uk', 'seventies', 'reggae rock', 'new wave', 'post-punk 10385 pop 10386 r&b', 'funk 10387 rap 10388 pop 10389 pop 10390 pop', 'dance', 'deep house', 'electronic 10391 country', 'rock', 'yacht rock 10392 rock 10393 r&b', 'funk 10394 pop 10395 rock', 'seventies', 'progressive rock', 'art rock', 'disco 10396 r&b 10397 pop 10398 country 10399 pop 10400 rap', 'east coast 10401 pop 10402 country', 'rock', 'alternative country', 'avant-pop', 'adult alternative', 'album-oriented rock (aor)', 'alternative', 'alternative rock', 'progressive rock', 'uk', 'art rock', 'pop-rock', 'folk rock', 'seventies', 'psychedelic rock', 'psychedelic', 'soft rock 10403 pop 10404 pop 10405 pop 10406 rap 10407 rock', 'baroque pop', 'seventies', 'yacht rock', 'singer-songwriter 10408 pop 10409 pop 10410 rap 10411 rock', 'uk', 'british rock', 'eighties', 'seventies', 'singer-songwriter', 'rockabilly', 'adult contemporary', 'pop-rock 10412 pop', 'rock', 'uk', 'seventies', 'jazz', 'blues rock 10413 rock 10414 country', 'cover 10415 rock 10416 r&b 10417 rock', 'pop', 'piano', 'cover', 'yacht rock 10418 rock', 'cover', 'pop-rock', 'soft rock', 'seventies', 'uk 10419 rock', 'soft rock', 'piano rock', 'ballad', 'piano', 'easy listening', 'adult contemporary', 'soundtrack', 'art rock', 'seventies', 'yacht rock 10420 pop 10421 pop 10422 pop 10423 country 10424 pop 10425 rock 10426 rock', 'southern rock', 'hard rock 10427 rock 10428 pop 10429 rock', 'album-oriented rock (aor)', 'seventies 10430 pop 10431 rock 10432 pop', 'singer-songwriter', 'seventies', 'disco 10433 pop 10434 pop', 'rock 10435 rap 10436 rock', 'pop', 'adult contemporary', 'soft rock', 'eighties', 'pop-rock', 'singer-songwriter', 'yacht rock', 'seventies 10437 r&b 10438 rap 10439 pop 10440 rock 10441 pop', 'r&b', 'eighties', 'soul 10442 rock', 'pop 10443 pop 10444 pop 10445 rock', 'seventies 10446 pop 10447 r&b', 'singer-songwriter', 'seventies', 'funk', 'soul 10448 rock 10449 pop 10450 pop 10451 rock', 'hard rock 10452 pop 10453 pop 10454 pop 10455 rock', 'new wave 10456 r&b', 'p-funk', 'psychedelic soul', 'alternative r&b', 'neo soul', 'memes', 'neo-psychedelia', 'soul 10457 rock', 'piano rock', 'baroque pop', 'ireland', 'new wave', 'piano', 'adult alternative', 'alternative rock', 'pop-rock 10458 pop', 'power pop', 'new wave 10459 pop', 'r&b', 'new age', 'funk-pop', 'funk', 'soul pop', 'dance', 'disco', 'soul 10460 rock', 'soft rock 10461 pop 10462 rock', 'pop 10463 country', 'outlaw country 10464 pop 10465 pop 10466 r&b', 'pop', 'funk', 'funk-pop', 'soul', 'soul pop', 'seventies', 'disco 10467 rock', 'pop', 'singer-songwriter', 'seventies', 'yacht rock 10468 pop', 'rock', 'ska', 'seventies', 'pop-rock', 'yacht rock 10469 pop 10470 rock 10471 rock', 'eighties', 'singer-songwriter', 'new wave 10472 rock', 'pop', 'singer-songwriter', 'seventies', 'british rock', 'eighties', 'synth-pop', 'new wave', 'uk 10473 rock', 'power pop', 'eighties', 'seventies', 'new wave 10474 pop', 'pop-rock 10475 pop 10476 pop', 'country', 'rock', 'eighties', 'album-oriented rock (aor)', 'yacht rock', 'ballad', 'adult alternative', 'adult contemporary', 'blue-eyed soul', 'blues rock', 'pop-rock 10477 rock', 'pop', 'yacht rock', 'heartland rock', 'eighties', 'pop-rock', 'soft rock 10478 country', 'rock 10479 pop 10480 pop 10481 rock', 'pop', 'seventies', 'soft rock', 'pop-rock', 'yacht rock 10482 pop 10483 pop 10484 pop 10485 rock', 'eighties', 'progressive rock 10486 pop 10487 rock', 'hard rock 10488 r&b', 'pop', 'soul 10489 rock', 'album-oriented rock (aor)', 'singer-songwriter', 'glam rock', 'pop-rock', 'eighties 10490 pop', 'r&b', 'motown', 'singer-songwriter', 'funk', 'soul', 'soul pop 10491 pop 10492 pop 10493 pop 10494 country', 'rock', 'alternative country', 'avant-pop', 'adult alternative', 'alternative', 'album-oriented rock (aor)', 'alternative rock', 'progressive rock', 'uk', 'yacht rock', 'art rock', 'folk rock', 'seventies', 'psychedelic rock', 'psychedelic', 'soft rock', 'pop-rock 10495 pop 10496 country', 'pop 10497 pop 10498 rock', 'eighties', 'singer-songwriter 10499 country', 'soundtrack 10500 pop 10501 rock', 'power pop', 'new wave', 'eighties', 'singer-songwriter', 'piano', 'pop-rock 10502 r&b', 'pop', 'eighties', 'disco 10503 pop 10504 rock', 'new wave 10505 pop', 'disco 10506 rock 10507 rock', 'pop', 'seventies', 'yacht rock 10508 pop 10509 rock', 'live', 'british rock', 'punk rock 10510 rock 10511 pop', 'soundtrack', 'eighties 10512 pop 10513 rock 10514 r&b', 'funk 10515 country 10516 pop 10517 pop 10518 pop 10519 r&b', 'pop', 'motown', 'eighties 10520 country', 'rock 10521 r&b', 'pop', 'ballad', 'easy listening', 'soul', 'soul pop', 'seventies 10522 pop 10523 pop', 'seventies', 'soul', 'electro', 'pop-rock', 'funk', 'disco 10524 pop 10525 rock', 'heavy metal', 'hard rock 10526 pop 10527 rock', 'pop', 'eighties', 'yacht rock 10528 country 10529 pop 10530 rock 10531 rock 10532 pop 10533 pop 10534 rap', 'france', 'french rap 10535 pop 10536 r&b', 'p-funk', 'psychedelic soul', 'alternative r&b', 'neo soul', 'memes', 'neo-psychedelia', 'soul 10537 pop 10538 pop 10539 pop 10540 rock', 'power pop', 'new wave 10541 pop', 'rock 10542 rock', 'r&b', 'pop', 'album-oriented rock (aor)', 'piano', 'eighties', 'soft rock', 'pop-rock', 'soul pop', 'blue-eyed soul', 'seventies', 'singer-songwriter', 'yacht rock', 'adult contemporary 10543 pop', 'funk', 'electro-pop 10544 pop 10545 pop 10546 r&b', 'pop', 'soul pop', 'seventies', 'ballad', 'soul 10547 r&b', 'pop', 'soul', 'soul pop 10548 pop', 'r&b', 'ballad', 'funk-pop', 'funk', 'soul pop', 'dance-pop', 'dance', 'soul 10549 pop 10550 pop 10551 r&b 10552 rap', 'parody', 'minecraft 10553 pop 10554 pop 10555 pop 10556 pop 10557 rock 10558 country 10559 r&b', 'ballad', 'eighties', 'soul pop', 'soul 10560 rock 10561 rock', 'roots', 'adult contemporary', 'eighties', 'soft rock', 'heartland rock', 'piano', 'ballad 10562 rock', 'pop', 'yacht rock', 'soft rock', 'uk', 'singer-songwriter', 'eighties', 'adult contemporary', 'pop-rock 10563 pop 10564 pop', 'yacht rock 10565 pop 10566 rock 10567 country 10568 rock 10569 rock 10570 r&b', 'funk', 'soul 10571 rock', 'progressive rock', 'seventies', 'british rock', 'album-oriented rock (aor)', 'funk rock', 'new wave', 'art rock', 'uk 10572 pop 10573 pop 10574 pop', 'funk 10575 pop 10576 r&b', 'pop', 'cover', 'disco', 'soul 10577 rock', 'disco', 'new wave 10578 pop 10579 country', 'rock', 'rockabilly 10580 rock', 'new wave 10581 r&b', 'disco 10582 pop 10583 pop 10584 pop 10585 pop 10586 rock 10587 r&b 10588 rock', 'post-punk', 'punk rock', 'album-oriented rock (aor)', 'adult contemporary', 'new wave', 'singer-songwriter', 'eighties 10589 rock', 'pop', 'musicals', 'soundtrack 10590 pop', 'eighties', 'yacht rock', 'musicals', 'soundtrack 10591 pop 10592 rock', 'adult contemporary', 'uk', 'british rock', 'pop-rock 10593 rock', 'blues rock', 'hard rock 10594 rock', 'hard rock 10595 pop 10596 pop 10597 rock', 'british rock', 'seventies', 'progressive rock', 'folk rock 10598 pop 10599 pop 10600 country 10601 pop 10602 pop 10603 pop 10604 rap', 'cypher', 'nerdcore 10605 country', 'rock', 'alternative country', 'avant-pop', 'adult alternative', 'power pop', 'album-oriented rock (aor)', 'alternative', 'alternative rock', 'progressive rock', 'uk', 'yacht rock', 'art rock', 'pop-rock', 'folk rock', 'seventies', 'psychedelic rock', 'psychedelic', 'hard rock 10606 rock', 'hard rock 10607 rock 10608 rock', 'soft rock', 'pop-rock', 'piano', 'adult contemporary', 'easy listening', 'eighties', 'yacht rock 10609 rock', 'pop', 'adult contemporary', 'easy listening', 'eighties', 'yacht rock 10610 rock', 'pop', 'seventies', 'singer-songwriter', 'smooth jazz', 'pop-rock', 'adult contemporary', 'yacht rock', 'ballad 10611 rock', 'soft rock', 'eighties', 'yacht rock 10612 r&b 10613 country 10614 r&b', 'pop', 'soul', 'disco', 'soul pop 10615 pop', 'eighties', 'disco', 'soundtrack 10616 rock 10617 rock', 'history 10618 rap 10619 country 10620 country 10621 pop 10622 pop 10623 rock 10624 r&b', 'pop', 'eighties', 'soul pop', 'soul 10625 rock 10626 pop 10627 country 10628 pop 10629 pop', 'rock', 'british rock', 'piano', 'ballad', 'uk', 'eighties', 'pop-rock', 'hard rock 10630 pop 10631 rap', 'hip-hop', 'hardcore hip-hop', 'east coast 10632 country', 'rock 10633 pop 10634 country', 'r&b', 'rock', 'pop', 'seventies', 'progressive metal', 'soft rock', 'adult alternative', 'american folk', 'alternative', 'alternative rock', 'alternative country', 'progressive rock', 'psychedelic rock', 'psychedelic', 'folk rock', 'blues rock', 'funk rock', 'cover', 'pop-rock 10635 pop 10636 country', 'rock 10637 pop 10638 pop 10639 rock', 'disco 10640 rock', 'pop', 'pop-rock 10641 r&b', 'pop', 'smooth jazz', 'soul jazz', 'soul', 'soul pop', 'funk', 'eighties', 'yacht rock 10642 rock 10643 pop 10644 country 10645 pop 10646 pop 10647 pop 10648 r&b', 'soul pop', 'soul', 'motown', 'easy listening', 'eighties 10649 pop 10650 pop 10651 rock 10652 rap 10653 rock 10654 r&b', 'pop', 'album-oriented rock (aor)', 'blue-eyed soul', 'ballad', 'yacht rock', 'adult contemporary 10655 pop 10656 pop', 'singer-songwriter 10657 pop 10658 pop 10659 pop 10660 pop 10661 pop 10662 pop 10663 country', 'pop', 'rock', 'eighties', 'hardcore', 'piano', 'heartland rock', 'southern rock', 'garage rock', 'hard rock', 'pop-rock 10664 r&b', 'pop', 'eighties', 'bay area', 'girl group', 'yacht rock', 'soul pop', 'synth-pop 10665 pop 10666 pop 10667 pop 10668 pop 10669 rap 10670 pop 10671 rock 10672 pop', 'rock', 'singer-songwriter', 'eighties', 'art pop', 'art rock', 'pop-rock', 'disco', 'soundtrack', 'musicals 10673 rock', 'pop 10674 rock', 'bossa nova', 'yacht rock', 'adult contemporary', 'singer-songwriter', 'piano', 'eighties', 'folk rock', 'folk', 'soft rock', 'pop-rock 10675 pop 10676 pop', 'hard rock 10677 pop 10678 rock 10679 rap 10680 rap 10681 rock', 'adult alternative', 'world music', 'eighties', 'folk', 'singer-songwriter', 'folk rock', 'pop-rock 10682 pop', 'pop-rock', 'disco', 'musicals', 'soundtrack', 'eighties 10683 pop 10684 r&b 10685 rock', 'uk', 'pop-rock 10686 r&b 10687 pop 10688 rock', 'dance rock', 'album-oriented rock (aor)', 'funk', 'eighties', 'uk', 'british rock', 'disco', 'funk rock 10689 country 10690 rock', 'southern rock 10691 pop 10692 pop 10693 r&b', 'eighties', 'soul 10694 pop 10695 rock', 'eighties', 'uk', 'british rock', 'avant garde', 'experimental rock', 'world music', 'art pop', 'synth rock', 'synth-pop', 'post-punk', 'new wave', 'art rock', 'progressive rock 10696 pop 10697 country', 'pop 10698 pop 10699 rock', 'dance rock', 'yacht rock', 'funk rock', 'eighties 10700 pop', 'pop-rock', 'power pop', 'synth-pop', 'new wave 10701 pop 10702 pop 10703 pop 10704 r&b', 'soul 10705 rock', 'synth-pop', 'post-punk', 'eighties', 'new wave 10706 pop', 'disco', 'synth-pop', 'cover 10707 rock', 'r&b', 'pop', 'adult contemporary', 'smooth jazz', 'soul pop', 'soul', 'jazz fusion', 'yacht rock', 'soft rock', 'synth-pop', 'blue-eyed soul', 'eighties 10708 rock', 'adult contemporary 10709 country', 'soundtrack', 'eighties', 'singer-songwriter 10710 rock', 'pop', 'new wave 10711 country 10712 rock', 'uk', 'british rock', 'progressive rock', 'pop-rock', 'eighties', 'alternative rock', 'satire 10713 r&b', 'pop', 'soul', 'soundtrack', 'eighties', 'motown', 'lgbtq+', 'funk', 'disco 10714 rock', 'glam rock', 'eighties', 'australia', 'hard rock 10715 pop 10716 pop 10717 pop 10718 r&b', 'pop', 'disco', 'seventies 10719 pop 10720 pop 10721 pop 10722 pop', 'rock 10723 country', 'singer-songwriter', 'theme song 10724 r&b 10725 r&b 10726 rock', 'art rock', 'progressive rock', 'pop-rock 10727 r&b', 'funk 10728 r&b', 'eighties', 'motown', 'reggae', 'funk', 'soul 10729 pop 10730 pop 10731 rock 10732 rock', 'pop', 'cover 10733 r&b', 'pop', 'eighties', 'funk', 'disco', 'soul', 'soul pop 10734 rock 10735 rock', 'eighties 10736 rock', 'southern rock 10737 rock', 'punk rock', 'new wave 10738 rock', 'southern rock', 'blues rock 10739 rap', 'battle rap 10740 country 10741 pop', 'country 10742 pop 10743 pop', 'rock', 'adult contemporary', 'power pop', 'pop-rock 10744 rap 10745 rock', 'pop', 'ballad', 'seventies', 'singer-songwriter', 'yacht rock 10746 rock', 'pop 10747 rock 10748 pop', 'yacht rock', 'ballad 10749 pop 10750 pop 10751 pop 10752 pop 10753 r&b', 'pop', 'jazz-funk', 'soul jazz', 'eighties', 'funk', 'disco', 'jazz 10754 pop 10755 rock', 'post-punk', 'alternative rock', 'surf punk', 'new wave 10756 country 10757 country 10758 rock', 'pop', 'live', 'singer-songwriter', 'pop-rock 10759 pop 10760 rock', 'pop-rock', 'post-punk', 'new wave', 'uk', 'eighties 10761 pop 10762 r&b 10763 pop', 'r&b', 'eighties', 'funk', 'disco 10764 pop 10765 pop', 'ballad', 'screen 10766 rock', 'uk 10767 pop 10768 pop 10769 rock 10770 rock 10771 rock', 'piano rock', 'piano', 'pop-rock', 'singer-songwriter', 'eighties', 'heartland rock 10772 pop 10773 pop 10774 pop 10775 pop 10776 pop', 'country', 'rock', 'eighties 10777 rock', 'pop', 'eighties', 'heartland rock', 'hard rock', 'garage rock', 'pop-rock 10778 pop 10779 rock', 'pop', 'new wave', 'pop-rock', 'reggae rock', 'cover', 'reggae', 'eighties 10780 pop 10781 rap', 'polski rap', 'polska 10782 pop 10783 rock 10784 country 10785 rock', 'hard rock 10786 pop', 'uk 10787 pop 10788 pop', 'eighties', 'piano', 'easy listening 10789 pop 10790 pop 10791 pop', 'rock', 'scandipop', 'svensk rock', 'scandinavia', 'sverige', 'eighties', 'pop-rock 10792 pop 10793 pop 10794 pop 10795 rap', 'dirty south', 'trap', 'atlanta 10796 pop 10797 r&b', 'pop', 'singer-songwriter', 'motown', 'eighties', 'disco', 'funk', 'soul pop 10798 rock', 'singer-songwriter', 'eighties', 'smooth jazz', 'adult contemporary', 'yacht rock', 'pop-rock', 'jazz fusion 10799 country', 'rock', 'soundtrack', 'feminism', 'pop country', 'eighties', 'singer-songwriter 10800 rock', 'british rock', 'uk', 'eighties', 'pop-rock', 'power pop', 'hard rock 10801 r&b 10802 pop 10803 country', 'ballad 10804 r&b', 'soul 10805 pop 10806 pop', 'rock', 'power pop', 'piano rock', 'piano', 'eighties', 'adult contemporary', 'ballad', 'pop-rock 10807 rock', 'r&b', 'pop', 'electro-funk', 'funk', 'funk rock', 'uk funky', 'bassline', 'pop-rock', 'dark pop', 'british rock', 'britpop', 'uk r&b', 'singer-songwriter', 'alternative rock', 'uk 10808 rock', 'progressive rock 10809 pop', 'r&b', 'piano', 'orchestral', 'eighties', 'funk', 'disco', 'soul', 'soul pop 10810 rock', 'eighties', 'new wave', 'art pop', 'art rock', 'funk rock', 'funk', 'disco', 'post-punk', 'funk-pop 10811 pop 10812 rock', 'christmas', 'folk rock', 'holiday', 'pop-rock', 'soft rock 10813 pop', 'r&b', 'eighties', 'motown', 'soul pop', 'soul 10814 pop', 'soundtrack 10815 rock', 'seventies', 'uk', 'progressive rock', 'pop-rock 10816 rap 10817 pop 10818 rock 10819 pop', 'christmas 10820 rap 10821 country', 'rock 10822 pop 10823 rock', 'album-oriented rock (aor)', 'memorial', 'heavy metal', 'eighties', 'marvel', 'hard rock', 'australia 10824 r&b', 'eighties', 'funk', 'soul pop 10825 rock', 'eighties', 'uk', 'british rock', 'blues rock', 'art rock', 'pop-rock 10826 r&b', 'pop', 'ballad', 'soul', 'disco', 'eighties 10827 r&b', 'rock 10828 country', 'rock 10829 rock 10830 pop 10831 pop 10832 rock', 'ballad', 'adult contemporary', 'yacht rock', 'easy listening', 'soft rock', 'eighties', 'singer-songwriter', 'piano', 'uk 10833 pop 10834 r&b', 'disco', 'funk 10835 country', 'rock 10836 country 10837 pop 10838 rock', 'folk rock 10839 pop 10840 pop', 'eighties', 'singer-songwriter', 'yacht rock', 'blue-eyed soul', 'pop-rock 10841 rap 10842 pop', 'pop-rock 10843 pop 10844 pop 10845 country', 'folk 10846 rock 10847 rock', 'pop', 'hard rock 10848 rock 10849 rock', 'rap', 'hip-hop', 'pop-rock', 'new wave', 'eighties', 'disco 10850 pop 10851 rock', 'heartland rock 10852 pop 10853 pop', 'funk 10854 rock 10855 r&b', 'norge 10856 rock', 'singer-songwriter', 'eighties', 'heartland rock 10857 rock', 'album-oriented rock (aor)', 'adult alternative', 'singer-songwriter', 'ska', 'eighties', 'reggae rock 10858 rock', 'pop', 'synth rock', 'synth-pop', 'new wave 10859 rock 10860 rock', 'hard rock 10861 r&b', 'funk', 'soul 10862 pop 10863 rap 10864 pop 10865 pop 10866 r&b 10867 pop', 'yacht rock', 'eighties 10868 pop 10869 r&b', 'pop', 'rock', 'dance-pop', 'dance', 'disco', 'soul pop', 'soul', 'funk-pop', 'funk', 'electronic 10870 r&b', 'soul 10871 rap', 'soundtrack', 'broadway', 'history', 'musicals 10872 pop', 'country', 'eighties', 'pop country 10873 pop', 'rock', 'yacht rock', 'ballad', 'adult contemporary', 'blues rock', 'pop-rock 10874 pop 10875 rap 10876 pop 10877 rap 10878 pop', 'rock', 'country', 'singer-songwriter', 'seventies', 'eighties', 'calypso', 'electric blues', 'blues rock', 'blues', 'folk pop', 'folk', 'american folk', 'pop country', 'pop-rock', 'folk rock', 'yacht rock', 'southern rock', 'heartland rock', 'easy listening', 'acoustic 10879 rock 10880 r&b 10881 pop 10882 country 10883 rock', 'eighties', 'album-oriented rock (aor)', 'southern rock', 'hard rock', 'power pop 10884 pop 10885 pop 10886 r&b 10887 pop 10888 pop 10889 r&b 10890 r&b', 'pop 10891 rock 10892 rap 10893 pop 10894 pop 10895 rap 10896 rock', 'piano rock', 'album-oriented rock (aor)', 'jazz', 'piano', 'yacht rock', 'smooth jazz', 'adult alternative', 'pop-rock', 'jazz fusion 10897 pop 10898 pop 10899 rock 10900 rock', 'hard rock', 'eighties', 'progressive rock 10901 pop 10902 pop 10903 pop 10904 rock', 'eighties 10905 rock 10906 pop', 'rock', 'glam rock', 'eighties', 'ballad', 'adult contemporary', 'pop-rock 10907 rock', 'pop', 'adult contemporary', 'blue-eyed soul', 'eighties 10908 rock 10909 pop', 'uk 10910 r&b 10911 pop 10912 pop 10913 pop', 'yacht rock 10914 rock', 'eighties', 'singer-songwriter 10915 pop 10916 rock', 'soft rock', 'eighties', 'adult contemporary', 'new wave', 'pop-rock 10917 rock', 'soundtrack', 'new wave', 'eighties', 'singer-songwriter 10918 country 10919 pop 10920 pop 10921 rock', 'pop 10922 pop 10923 pop 10924 country', 'cover 10925 pop 10926 pop', 'rock', 'scandipop', 'svensk rock', 'scandinavia', 'sverige', 'eighties', 'pop-rock', 'disco 10927 rap 10928 pop 10929 pop 10930 rock 10931 r&b 10932 r&b', 'eighties', 'motown', 'producer', 'singer-songwriter', 'ballad', 'soul 10933 rock 10934 pop 10935 pop 10936 r&b', 'pop', 'seventies', 'motown', 'soul', 'pop-rock 10937 rock', 'yacht rock', 'ballad', 'baroque pop', 'progressive rock', 'eighties', 'soft rock 10938 pop 10939 pop 10940 pop 10941 pop 10942 r&b', 'eighties', 'funk', 'soul', 'soul pop 10943 pop 10944 pop', 'rock', 'eighties', 'disco 10945 pop 10946 pop 10947 pop 10948 pop 10949 r&b', 'pop', 'eighties', 'funk', 'soul pop 10950 country 10951 pop 10952 rock', 'heartland rock', 'eighties 10953 pop', 'rock', 'singer-songwriter', 'eighties', 'pop-rock 10954 r&b 10955 r&b', 'pop', 'eighties', 'funk', 'disco', 'soul', 'soul pop', 'pop-rock', 'synth rock', 'synth-pop 10956 pop 10957 pop', 'synth-pop 10958 pop 10959 pop 10960 rap', 'uk rap', 'beef', 'uk', 'grime 10961 pop 10962 pop 10963 r&b 10964 pop 10965 country 10966 pop 10967 rock', 'eighties 10968 rap', 'r&b', 'rock', 'funk 10969 r&b 10970 r&b 10971 r&b 10972 pop 10973 rock', 'uk', 'memorial', 'singer-songwriter', 'eighties 10974 pop 10975 pop 10976 pop 10977 rock', 'pop', 'eighties', 'yacht rock 10978 rock', 'pop', 'eighties', 'yacht rock', 'adult contemporary', 'album-oriented rock (aor)', 'pop-rock 10979 rock 10980 r&b 10981 pop 10982 country', 'pop 10983 rock', 'pop 10984 country', 'pop', 'r&b', 'yacht rock', 'eighties', 'girl group', 'adult contemporary', 'easy listening', 'pop country', 'soul pop', 'soul 10985 r&b', 'singer-songwriter', 'eighties', 'motown', 'soul pop', 'funk 10986 pop 10987 pop', 'r&b', 'soul', 'soul pop 10988 rock 10989 rock', 'singer-songwriter', 'dark ambient', 'dark pop', 'soundtrack', 'experimental pop', 'uk', 'eighties 10990 pop 10991 pop 10992 pop 10993 pop 10994 rock', 'canada', 'hard rock', 'eighties', 'progressive rock 10995 country 10996 pop 10997 pop 10998 pop 10999 country', 'rock 11000 rock 11001 country', 'cover', 'folk 11002 pop 11003 r&b 11004 rock 11005 pop 11006 rock 11007 r&b', 'pop', 'motown 11008 r&b 11009 pop 11010 rock', 'southern rock', 'hard rock 11011 country 11012 pop 11013 r&b 11014 r&b', 'pop', 'eighties', 'funk', 'disco', 'soul', 'soul pop 11015 pop 11016 pop', 'rock', 'new wave', 'eighties', 'pop-rock 11017 pop 11018 rock 11019 pop', 'rock', 'pop-rock 11020 rock', 'eighties 11021 pop 11022 pop 11023 rock', 'pop', 'art rock 11024 pop 11025 rock', 'emo', 'punk rock 11026 country 11027 r&b', 'eighties', 'motown', 'adult contemporary', 'easy listening', 'ballad', 'singer-songwriter 11028 rock 11029 pop 11030 pop 11031 pop 11032 pop 11033 rock', 'pop 11034 r&b 11035 pop 11036 rock', 'pop 11037 rock', 'ballad', 'easy listening', 'adult contemporary', 'singer-songwriter', 'eighties 11038 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 11039 pop 11040 rock', 'eighties', 'pop-rock 11041 country 11042 pop', 'rock', 'synth-pop', 'new wave', 'uk', 'eighties', 'rockabilly 11043 pop 11044 rock', 'soft rock', 'album-oriented rock (aor) 11045 pop', 'r&b', 'singer-songwriter', 'motown', 'eighties', 'soul pop', 'funk 11046 pop', 'eighties', 'theme song', 'uk', 'scotland', 'soundtrack 11047 pop 11048 rock 11049 pop 11050 pop', 'r&b', 'eighties', 'funk', 'electro-funk', 'dance', 'dance-pop 11051 pop 11052 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 11053 pop 11054 rock', 'heartland rock', 'eighties 11055 rock', 'eighties', 'british rock', 'uk', 'new wave', 'pop-rock', 'blue-eyed soul', 'adult alternative 11056 rock', 'jazz 11057 pop 11058 r&b', 'pop', 'ballad', 'smooth jazz', 'jazz', 'soul pop', 'soul', 'eighties', 'yacht rock 11059 rock', 'new wave 11060 pop 11061 rap', 'west coast 11062 rock 11063 pop 11064 pop 11065 pop 11066 rock', 'pop-rock 11067 pop 11068 r&b', 'pop', 'soul', 'disco 11069 r&b', 'soul', 'funk 11070 pop 11071 rock', 'pop', 'singer-songwriter', 'ballad', 'theme song', 'soundtrack', 'eighties', 'yacht rock 11072 pop 11073 pop 11074 pop 11075 rock', 'album-oriented rock (aor)', 'hard rock', 'pop-rock', 'alternative rock 11076 r&b', 'pop', 'singer-songwriter', 'eighties', 'soul', 'soul pop 11077 pop 11078 pop', 'r&b', 'ballad', 'smooth jazz', 'soul jazz', 'soul pop', 'eighties', 'soul 11079 rock', 'british rock', 'uk', 'eighties', 'hard rock 11080 pop 11081 pop 11082 pop', 'r&b', 'soul', 'funk', 'funk-pop', 'disco', 'eighties 11083 pop 11084 rock', 'pop', 'eighties', 'singer-songwriter', 'pop-rock 11085 pop 11086 rock 11087 r&b', 'adult contemporary', 'soul 11088 rock', 'power pop', 'eighties', 'new wave', 'pop-rock 11089 country 11090 pop 11091 pop', 'new wave', 'soundtrack 11092 rock', 'pop', 'album-oriented rock (aor)', 'eighties', 'seventies', 'cover', 'garage rock', 'heartland rock', 'electric blues', 'blues rock', 'blues', 'hardcore', 'hard rock', 'piano', 'live', 'pop-rock 11093 rock 11094 pop 11095 pop 11096 pop 11097 pop', 'power pop 11098 pop 11099 rock 11100 r&b 11101 rap 11102 pop 11103 rock', 'hard rock 11104 country', 'rock 11105 pop', 'rock 11106 pop 11107 pop', 'singer-songwriter', 'eighties 11108 rock', 'dance rock', 'electronic rock', 'synth rock', 'piano', 'album-oriented rock (aor)', 'ska', 'british rock', 'uk', 'singer-songwriter', 'eighties', 'pop-rock', 'new wave 11109 r&b', 'pop 11110 pop 11111 rock', 'pop', 'seventies 11112 pop 11113 rock', 'art rock', 'progressive rock', 'new wave', 'eighties', 'synth rock', 'pop-rock 11114 country 11115 rap 11116 rap', 'battle rap 11117 pop', 'soul', 'funk', 'jazz 11118 pop', 'disco', 'eighties 11119 pop 11120 rock', 'pop', 'ballad', 'easy listening', 'eighties', 'pop-rock', 'soft rock', 'yacht rock 11121 r&b', 'pop', 'electronic', 'eighties', 'funk', 'disco 11122 pop 11123 rock 11124 country 11125 rock', 'hard rock 11126 pop', 'rock', 'pop-rock', 'ballad', 'yacht rock 11127 pop 11128 pop 11129 rock 11130 pop 11131 country 11132 pop', 'r&b', 'eighties', 'funk', 'soul pop', 'soul', 'disco 11133 r&b 11134 pop', 'rock', 'pop-rock', 'synth-pop', 'eighties', 'uk', 'new wave 11135 rap 11136 pop 11137 country 11138 rock', 'pop', 'adult contemporary', 'eighties', 'pop-rock', 'new wave 11139 rock', 'art rock', 'progressive rock 11140 pop 11141 pop 11142 rock', 'folk rock', 'pop-rock 11143 rock', 'funk', 'alternative r&b', 'disco', 'singer-songwriter', 'eighties', 'pop-rock 11144 rock', 'eighties', 'art rock', 'progressive rock', 'new wave', 'synth-pop 11145 pop 11146 country', 'eighties 11147 r&b', 'pop', 'soul pop', 'soul jazz', 'soul', 'smooth jazz', 'yacht rock', 'funk 11148 pop 11149 pop', 'r&b', 'rock', 'eighties 11150 pop 11151 rock', 'hard rock', 'adult contemporary', 'album-oriented rock (aor)', 'ballad', 'piano', 'glam rock', 'memes', 'singer-songwriter', 'eighties 11152 pop 11153 pop 11154 pop 11155 pop 11156 rock 11157 pop 11158 pop 11159 rock', 'punk rock 11160 rock 11161 rock', 'power pop', 'eighties', 'new wave', 'pop-rock 11162 rock', 'eighties', 'metal', 'grunge 11163 pop', 'rock', 'hard rock', 'art rock', 'singer-songwriter', 'piano', 'eighties', 'adult alternative', 'british rock', 'pop-rock', 'new wave', 'uk 11164 pop', 'eighties', 'blue-eyed soul', 'yacht rock', 'singer-songwriter 11165 pop', 'singer-songwriter', 'eighties 11166 pop 11167 pop', 'r&b', 'cover', 'remix', 'dance', 'disco', 'funk', 'electro-funk', 'p-funk', 'eighties 11168 pop', 'r&b', 'rock', 'yacht rock', 'alternative r&b', 'eighties', 'synth-pop', 'funk-pop', 'blue-eyed soul', 'dance-pop', 'adult contemporary', 'soul pop', 'soul', 'pop-rock 11169 pop 11170 country 11171 rock', 'eighties 11172 rock', 'eighties', 'yacht rock 11173 country 11174 pop 11175 rock', 'pop', 'eighties 11176 rock', 'soft rock', 'ballad', 'singer-songwriter', 'seventies', 'piano 11177 pop 11178 r&b', 'rap', 'alternative r&b', 'hip-hop', 'uk rap', 'uk 11179 country 11180 pop 11181 pop 11182 pop 11183 pop 11184 rock 11185 rock 11186 pop 11187 pop 11188 rock 11189 rock 11190 pop 11191 rock', 'pop', 'adult contemporary', 'yacht rock', 'pop-rock 11192 pop 11193 pop 11194 pop 11195 pop 11196 r&b', 'funk 11197 pop 11198 rock 11199 pop 11200 rock 11201 r&b', 'pop', 'eighties', 'funk', 'soul', 'soul pop', 'synth-pop 11202 pop', 'eighties', 'ballad', 'easy listening', 'piano 11203 pop 11204 pop', 'r&b', 'ballad', 'soul', 'soul pop 11205 rock', 'pop 11206 pop 11207 rock', 'uk', 'pop-rock', 'new wave', 'progressive rock', 'eighties', 'synth rock 11208 rock 11209 pop 11210 rock 11211 pop 11212 rock 11213 pop 11214 r&b 11215 pop 11216 r&b', 'soul 11217 pop', 'rock', 'art rock 11218 rock', 'outro', 'piano', 'soft rock', 'glam rock', 'easy listening', 'eighties', 'singer-songwriter', 'adult contemporary', 'ballad 11219 r&b', 'eighties', 'soul pop', 'soul 11220 rock', 'british rock', 'eighties', 'adult alternative', 'album-oriented rock (aor)', 'art rock', 'post-punk', 'new wave', 'electronic rock', 'synth rock', 'pop-rock 11221 pop 11222 pop 11223 rock 11224 pop 11225 country 11226 pop', 'spoken word 11227 pop', 'new wave', 'eighties', 'electro-soul', 'soul', 'electro-pop', 'uk', 'cover', 'soundtrack', 'alternative pop', 'synth-pop 11228 pop', 'uk 11229 pop 11230 pop 11231 pop', 'r&b', 'retro', 'eighties', 'bay area', 'girl group', 'soul pop 11232 pop 11233 pop 11234 rap', 'pop', 'spoken word', 'eighties', 'synth-pop', 'new wave', 'funk', 'disco 11235 rock 11236 rock', 'pop-rock', 'power pop', 'eighties', 'new wave 11237 r&b 11238 rock 11239 pop', 'comedy', 'canada 11240 pop 11241 country 11242 rap 11243 pop 11244 rock', 'album-oriented rock (aor)', 'cover', 'hard rock', 'eighties 11245 rock 11246 rock', 'pop-rock 11247 r&b', 'funk 11248 rock', 'eighties', 'hard rock', 'cover 11249 rock', 'album-oriented rock (aor) 11250 pop 11251 pop 11252 pop 11253 pop 11254 rock 11255 rock', 'eighties 11256 pop 11257 r&b', 'soul 11258 pop 11259 pop', 'rap', 'disco', 'funk 11260 r&b 11261 pop 11262 rock', 'pop', 'dance rock', 'new wave', 'eighties', 'pop-rock 11263 rock', 'hard rock', 'piano rock', 'piano', 'singer-songwriter', 'eighties', 'pop-rock 11264 pop 11265 rock', 'pop 11266 pop 11267 rap 11268 rock 11269 rock', 'pop', 'blue-eyed soul', 'yacht rock', 'eighties 11270 pop 11271 r&b', 'eighties', 'alternative', 'alternative dance', 'dance', 'funk', 'disco 11272 rock', 'pop', 'album-oriented rock (aor)', 'yacht rock', 'pop-rock', 'eighties 11273 r&b', 'pop', 'eighties', 'adult contemporary', 'ballad', 'soul', 'soul pop 11274 pop', 'uk', 'eighties', 'new wave', 'synth-pop 11275 pop 11276 country', 'adult contemporary', 'ballad', 'cover', 'eighties 11277 rap', 'pop', 'pop-rock', 'j-rock', 'vtuber 11278 rock 11279 r&b', 'eighties', 'funk', 'soul 11280 r&b 11281 pop 11282 rock 11283 rock', 'pop 11284 r&b', 'pop', 'soul', 'funk 11285 rock 11286 rock', 'pop', 'singer-songwriter', 'memorial', 'pop-rock', 'adult contemporary 11287 rock', 'pop', 'easy listening 11288 rock', 'pop-rock', 'progressive rock', 'new wave', 'synth rock', 'eighties', 'art rock', 'synth-pop 11289 r&b 11290 rock 11291 pop 11292 rock', 'pop 11293 country', 'folk 11294 pop 11295 rock 11296 r&b 11297 pop 11298 pop 11299 pop 11300 pop 11301 pop 11302 r&b 11303 pop 11304 pop 11305 pop 11306 pop 11307 pop 11308 pop 11309 pop 11310 r&b 11311 country 11312 pop 11313 pop', 'cover 11314 pop', 'rock', 'singer-songwriter', 'piano', 'race / ethnicity', 'eighties', 'uk 11315 r&b 11316 pop 11317 pop', 'r&b', 'eighties', 'funk', 'soul', 'soul pop 11318 rock', 'album-oriented rock (aor)', 'adult alternative', 'british rock', 'eighties', 'synth rock', 'electronic rock', 'post-punk', 'new wave 11319 pop 11320 country 11321 pop 11322 rock', 'eighties', 'album-oriented rock (aor)', 'british rock', 'uk', 'hard rock', 'progressive rock 11323 rock', 'eighties', 'hard rock', 'yacht rock 11324 rock', 'art rock', 'post-punk', 'new wave', 'synth-pop', 'soundtrack 11325 pop 11326 pop 11327 r&b 11328 rap 11329 rock', 'art rock', 'electronic 11330 rock', 'album-oriented rock (aor)', 'heartland rock 11331 pop 11332 rock', 'uk 11333 rock', 'hard rock 11334 r&b', 'funk 11335 rock', 'pop', 'eighties', 'soft rock', 'adult contemporary', 'ballad', 'new wave', 'pop-rock 11336 rock 11337 rock', 'british rock', 'uk', 'eighties', 'synth-pop', 'synth rock', 'electro', 'disco', 'pop-rock 11338 pop 11339 country 11340 rock', 'eighties', 'hard rock 11341 pop 11342 rock', 'pop', 'ballad', 'singer-songwriter', 'eighties', 'yacht rock 11343 pop', 'r&b', 'singer-songwriter', 'eighties', 'soul pop', 'soul', 'jazz 11344 pop 11345 rock', 'progressive rock 11346 r&b', 'pop', 'eighties', 'funk', 'soul', 'funk-pop', 'soul pop 11347 pop 11348 rock 11349 pop 11350 rock', 'pop', 'pop-rock 11351 pop 11352 pop 11353 pop', 'year end list', 'electronic', 'trance 11354 pop', 'new wave 11355 pop', 'soundtrack 11356 pop 11357 pop', 'eighties', 'new wave', 'pop-rock 11358 country 11359 rock 11360 rock 11361 rock 11362 pop 11363 pop', 'synth-pop', 'art pop', 'uk', 'greece', 'eighties 11364 r&b', 'soul', 'funk 11365 rock 11366 pop 11367 pop', 'uk', 'new wave', 'pop-rock', 'eighties 11368 pop 11369 pop 11370 r&b', 'jazz', 'funk', 'soul 11371 rock 11372 pop 11373 pop 11374 pop 11375 pop 11376 pop', 'eighties', 'new wave', 'power pop 11377 pop 11378 rock', 'funk 11379 pop 11380 rock', 'dance rock', 'piano rock', 'piano', 'soundtrack', 'hard rock', 'eighties 11381 rock', 'ballad', 'eighties', 'yacht rock', 'progressive rock 11382 pop 11383 rock 11384 r&b', 'rap', 'conscious hip-hop', 'nineties', 'hip-hop', 'jazz rap', 'east coast 11385 pop 11386 r&b', 'disco', 'soul', 'funk 11387 r&b', 'funk', 'soul 11388 pop 11389 rock', 'pop', 'pop-rock 11390 rock 11391 rock', 'pop 11392 pop', 'adult contemporary', 'yacht rock', 'ballad 11393 pop 11394 pop 11395 r&b 11396 country 11397 rock 11398 rock 11399 rock', 'pop', 'eighties', 'pop-rock 11400 rock', 'eighties', 'deutschland', 'hard rock', 'glam metal 11401 rock', 'yacht rock', 'soft rock 11402 pop', 'eighties', 'bay area', 'girl group', 'americana', 'soul pop', 'synth-pop 11403 r&b', 'pop', 'eighties', 'synth-pop', 'disco 11404 rap', 'outro', 'atlanta', 'trap 11405 pop 11406 pop 11407 rock', 'pop 11408 rock', 'new wave', 'synth rock', 'eighties', 'uk 11409 pop 11410 rock', 'adult contemporary', 'album-oriented rock (aor)', 'soft rock', 'progressive rock', 'eighties', 'yacht rock 11411 rap 11412 pop 11413 pop 11414 rock', 'eighties', 'uk 11415 pop 11416 pop', 'pop-rock', 'adult contemporary', 'easy listening 11417 pop', 'rock', 'soundtrack', 'australia', 'eighties', 'reggae rock', 'new wave', 'pop-rock 11418 rock', 'pop', 'italo disco', 'disco', 'synth-pop', 'eighties', 'dance-pop', 'dance', 'cover 11419 rock', 'pop', 'uk', 'eighties', 'synth-pop', 'new wave 11420 pop 11421 rock', 'eighties 11422 pop 11423 r&b', 'soul', 'funk 11424 rock 11425 rock 11426 pop', 'eighties', 'soundtrack', 'yacht rock', 'disco 11427 rock', 'album-oriented rock (aor)', 'adult alternative', 'british rock', 'new wave', 'eighties', 'uk', 'post-punk', 'punk rock 11428 country', 'acoustic', 'piano', 'easy listening', 'adult contemporary', 'ballad', 'soundtrack 11429 rock', 'album-oriented rock (aor)', 'adult contemporary', 'heartland rock', 'singer-songwriter', 'eighties 11430 pop 11431 r&b', 'pop', 'eighties', 'disco', 'funk', 'soul', 'soul pop 11432 pop', 'uk 11433 country 11434 pop 11435 country 11436 rock 11437 rock 11438 rock', 'pop', 'producer', 'soundtrack', 'adult contemporary', 'easy listening', 'pop-rock', 'soft rock', 'singer-songwriter', 'eighties', 'yacht rock 11439 pop', 'eighties', 'yacht rock 11440 pop 11441 pop 11442 pop', 'rock', 'uk', 'eighties', 'pop-rock', 'new wave 11443 pop 11444 country', 'rock', 'seventies', 'acoustic', 'piano', 'ballad', 'singer-songwriter 11445 pop 11446 rock 11447 rock 11448 pop', 'rock', 'ballad', 'smooth jazz', 'funk-pop', 'blue-eyed soul', 'yacht rock', 'funk', 'jazz-funk', 'adult contemporary', 'jazz fusion', 'soul jazz', 'soul', 'soul pop', 'pop-rock 11449 rock', 'pop', 'yacht rock 11450 pop 11451 pop 11452 pop 11453 country', 'rock 11454 pop 11455 pop 11456 rock', 'pop 11457 rock', 'pop', 'eighties', 'pop-rock 11458 pop 11459 r&b', 'soul', 'funk 11460 rock 11461 pop 11462 pop 11463 pop 11464 pop 11465 pop 11466 rock', 'pop 11467 pop', 'r&b', 'soul pop', 'funk', 'soul 11468 country 11469 pop 11470 rock', 'pop', 'eighties', 'singer-songwriter', 'yacht rock 11471 pop', 'rock', 'album-oriented rock (aor)', 'adult contemporary', 'producer', 'soundtrack', 'singer-songwriter', 'piano', 'synth-pop', 'new wave', 'adult alternative', 'pop-rock 11472 pop', 'soft rock', 'ballad 11473 pop 11474 rock 11475 r&b', 'disco', 'soul jazz 11476 pop 11477 pop 11478 r&b 11479 pop 11480 pop 11481 country 11482 pop 11483 pop 11484 rock', 'easy listening', 'adult contemporary', 'singer-songwriter', 'eighties', 'dream pop 11485 rock 11486 pop 11487 pop', 'bubblegum pop', 'eighties', 'new wave 11488 pop', 'new wave', 'pop-rock 11489 country 11490 pop 11491 rock 11492 pop 11493 pop 11494 rock 11495 pop', 'soul', 'eighties', 'smooth jazz 11496 rock', 'eighties', 'southern rock', 'soft rock 11497 rock', 'hard rock', 'synth rock 11498 pop 11499 pop 11500 r&b 11501 r&b', 'pop', 'bay area', 'girl group', 'soul pop', 'dance', 'dance-pop', 'eighties', 'new wave', 'pop-rock 11502 pop', 'rock', 'adult alternative', 'rockabilly', 'pop-rock 11503 pop 11504 rock 11505 rock', 'adult contemporary', 'ballad', 'easy listening', 'soft rock', 'eighties 11506 r&b', 'soul 11507 rock', 'new wave 11508 pop 11509 r&b', 'soul 11510 pop 11511 pop 11512 r&b', 'pop', 'eighties', 'soul', 'soul pop 11513 pop', 'r&b', 'eighties', 'electro-pop', 'synth-pop 11514 rock', 'pop 11515 rock', 'eighties 11516 rap 11517 pop 11518 rock', 'eighties 11519 pop', 'synth-pop', 'new wave 11520 pop 11521 rock', 'alternative', 'funk', 'post-punk', 'british rock', 'new wave 11522 pop 11523 rock 11524 pop 11525 pop 11526 pop 11527 pop 11528 rock 11529 pop 11530 r&b', 'funk-pop', 'synth-pop', 'funk 11531 rock', 'pop-rock', 'adult contemporary', 'yacht rock', 'eighties', 'singer-songwriter 11532 pop 11533 pop 11534 rap', 'conscious hip-hop', 'funk 11535 r&b 11536 pop', 'uk', 'synth-pop', 'new wave 11537 pop 11538 r&b', 'rock', 'funk rock', 'funk', 'eighties', 'alternative r&b', 'uk r&b', 'british rock', 'avant garde', 'new wave', 'post-punk', 'art rock', 'progressive rock', 'industrial rock', 'experimental rock 11539 pop 11540 rock', 'pop', 'pop-rock 11541 rock', 'pop', 'synth rock', 'pop-rock', 'new wave', 'synth-pop 11542 rock', 'yacht rock', 'soft rock', 'eighties', 'adult contemporary', 'adult alternative', 'singer-songwriter', 'pop-rock', 'memes 11543 pop 11544 r&b', 'eighties', 'soul 11545 r&b 11546 rock', 'r&b', 'pop', 'pop-rock', 'eighties', 'disco', 'dance-pop', 'funk-pop', 'synth-pop', 'dance', 'funk 11547 pop', 'new wave', 'synth-pop 11548 pop 11549 r&b', 'funk', 'soul pop', 'soul 11550 pop', 'lounge', 'comedy 11551 rock 11552 pop', 'blue-eyed soul', 'soul pop', 'soul', 'uk', 'eighties 11553 pop 11554 pop', 'rock', 'australia', 'new wave', 'ska', 'eighties', 'reggae rock', 'pop-rock', 'reggae', 'memes 11555 pop 11556 rock', 'heavy metal', 'metal 11557 rock', 'pop-rock 11558 rock', 'pop', 'eighties', 'yacht rock', 'pop-rock 11559 r&b', 'pop', 'eighties', 'adult contemporary', 'soul', 'soul pop', 'blue-eyed soul', 'yacht rock 11560 pop', 'new wave', 'pop-rock 11561 rock', 'pop', 'pop-rock', 'singer-songwriter', 'yacht rock', 'soft rock', 'adult alternative', 'britpop', 'uk', 'adult contemporary', 'album-oriented rock (aor)', 'eighties', 'synth-pop 11562 rock', 'synth-pop', 'new wave 11563 rock', 'rockabilly', 'eighties', 'new wave 11564 rap 11565 rock', 'pop 11566 pop 11567 pop 11568 rock', 'eighties', 'singer-songwriter 11569 rock', 'pop-rock', 'singer-songwriter', 'cover', 'eighties 11570 pop 11571 r&b', 'rock', 'pop', 'singer-songwriter', 'smooth jazz', 'blue-eyed soul', 'soul pop', 'yacht rock', 'pop-rock 11572 rock 11573 pop 11574 rock', 'piano rock', 'folk', 'album-oriented rock (aor)', 'adult alternative', 'adult contemporary', 'piano', 'pop-rock', 'eighties', 'singer-songwriter', 'folk rock 11575 pop 11576 rock 11577 rock', 'hard rock', 'progressive rock', 'post-punk', 'pop-rock', 'new wave 11578 pop 11579 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 11580 pop 11581 rock', 'pop', 'adult contemporary', 'reggae rock', 'britpop', 'new wave', 'blue-eyed soul', 'british rock', 'uk', 'singer-songwriter', 'eighties 11582 pop 11583 r&b 11584 rock 11585 pop 11586 pop 11587 rock', 'pop 11588 rap', 'reggae 11589 rap', 'trap', 'remix 11590 country 11591 pop 11592 pop', 'soul', 'cover 11593 rock', 'adult alternative', 'eighties', 'alternative rock 11594 pop 11595 pop', 'r&b', 'adult contemporary 11596 pop', 'r&b', 'eighties', 'dance', 'dance-pop', 'funk', 'synth-pop 11597 pop 11598 pop 11599 pop 11600 rock', 'eighties', 'pop-rock', 'rockabilly 11601 rock', 'pop', 'eighties', 'dance', 'synth-pop', 'new wave 11602 rock', 'album-oriented rock (aor)', 'soundtrack', 'video game', 'psychedelic rock', 'adult alternative', 'hard rock', 'british rock', 'uk 11603 pop 11604 rap 11605 rap 11606 r&b', 'soul', 'cover 11607 rock 11608 rock', 'protest songs', 'eighties', 'uk', 'british rock', 'art rock', 'blues rock', 'progressive rock 11609 country 11610 pop 11611 rock 11612 rock 11613 rock', 'pop', 'album-oriented rock (aor)', 'adult contemporary', 'singer-songwriter', 'adult alternative', 'synth-pop', 'piano', 'pop-rock 11614 pop 11615 rock 11616 rock', 'pop 11617 rock', 'glam metal', 'metal 11618 pop 11619 r&b', 'pop', 'eighties', 'funk', 'electro-funk 11620 pop 11621 pop', 'eighties', 'singer-songwriter', 'yacht rock 11622 r&b', 'pop', 'synth-pop', 'disco', 'dance-pop', 'video game', 'singer-songwriter', 'eighties', 'funk', 'soul', 'soul pop 11623 pop 11624 r&b', 'pop', 'electro-pop 11625 pop', 'rock', 'eighties', 'soundtrack', 'celtic', 'uk', 'british rock', 'british folk', 'folk', 'new wave', 'soul 11626 pop 11627 pop', 'eighties', 'disco', 'dance-pop', 'dance', 'hi-nrg 11628 pop 11629 pop 11630 rock', 'adult contemporary', 'jazz fusion', 'blue-eyed soul', 'soft rock', 'yacht rock', 'easy listening', 'jazz', 'disco', 'eighties', 'singer-songwriter 11631 pop 11632 rock 11633 pop 11634 rock', 'disco', 'eighties 11635 rock', 'new wave', 'indie pop', 'eighties', 'power pop 11636 rock', 'synth rock', 'funk rock', 'eighties 11637 rock 11638 pop', 'rock', 'album-oriented rock (aor)', 'yacht rock', 'smooth jazz', 'jazz', 'eighties', 'adult contemporary', 'singer-songwriter', 'adult alternative', 'jazz fusion', 'pop-rock 11639 pop 11640 pop 11641 rock', 'ballad', 'glam rock', 'dark pop', 'adult contemporary', 'hard rock', 'singer-songwriter', 'eighties 11642 pop 11643 pop 11644 r&b', 'eighties', 'motown', 'soul 11645 pop 11646 pop 11647 pop 11648 pop 11649 pop', 'r&b', 'eighties', 'funk', 'synth-pop', 'dance', 'dance-pop 11650 rock', 'album-oriented rock (aor)', 'japanese', 'japan', 'eighties', 'synth rock 11651 pop', 'new wave', 'synth-pop', 'pop-rock 11652 pop 11653 rock', 'album-oriented rock (aor)', 'eighties', 'dark pop', 'singer-songwriter 11654 rock', 'new wave 11655 pop 11656 pop', 'eighties', 'new wave', 'synth-pop 11657 pop 11658 rock 11659 r&b', 'pop', 'ballad', 'soul', 'soul pop', 'eighties 11660 rock', 'pop', 'r&b', 'eighties', 'pop-rock', 'album-oriented rock (aor)', 'soul pop', 'soul', 'funk-pop', 'funk rock', 'synth-pop', 'new wave 11661 pop 11662 rock', 'pop', 'dance rock', 'singer-songwriter', 'video game', 'soundtrack', 'eighties', 'pop-rock', 'hard rock 11663 pop 11664 pop 11665 pop', 'synth-pop', 'electro-pop', 'alternative pop 11666 rock', 'british rock', 'eighties', 'new wave 11667 country 11668 pop', 'new wave 11669 r&b 11670 pop 11671 pop 11672 pop 11673 rock', 'pop', 'eighties', 'yacht rock', 'soft rock', 'pop-rock 11674 rock', 'pop', 'orchestral', 'ballad 11675 rock 11676 r&b', 'soul', 'funk 11677 pop', 'new wave', 'synth-pop 11678 rock 11679 pop 11680 rock', 'pop', 'eighties', 'pop-rock', 'synth-pop', 'new wave', 'cover 11681 pop 11682 rock', 'glam metal 11683 pop 11684 rock 11685 pop 11686 r&b', 'pop', 'funk', 'funk-pop', 'yacht rock', 'smooth jazz', 'jazz', 'soul pop', 'soul 11687 country 11688 r&b', 'soul 11689 pop', 'rock', 'eighties', 'new wave 11690 rock', 'dance rock', 'alternative', 'uk', 'eighties', 'funk', 'pop-rock', 'new wave', 'funk rock', 'dance-pop 11691 country 11692 pop', 'eighties', 'bay area', 'girl group', 'dance', 'dance-pop', 'new wave', 'electro', 'electro-pop', 'electro-funk 11693 pop 11694 pop 11695 pop 11696 pop 11697 rock', 'new wave', 'video game 11698 pop', 'eighties', 'synth-pop', 'new wave 11699 pop', 'dance-pop', 'synth-pop', 'soundtrack', 'eighties', 'screen 11700 rock', 'hard rock', 'southern rock 11701 pop 11702 rock', 'soundtrack', 'eighties', 'synth-pop', 'new wave 11703 rock', 'new wave', 'alternative rock', 'eighties', 'post-punk', 'ireland 11704 rock', 'australia', 'eighties', 'reggae rock', 'new wave', 'pop-rock 11705 rock 11706 pop 11707 rock 11708 pop 11709 pop', 'eighties', 'uk', 'art pop', 'new wave', 'synth-pop 11710 pop 11711 rock', 'soft rock', 'adult contemporary', 'glam rock', 'eighties', 'ballad 11712 pop', 'adult contemporary', 'singer-songwriter', 'new wave', 'eighties 11713 rock 11714 pop 11715 pop 11716 r&b 11717 rock', 'uk', 'funk rock', 'reggae rock', 'reggae', 'protest songs', 'singer-songwriter', 'eighties 11718 pop 11719 pop 11720 pop 11721 rock', 'pop 11722 pop', 'uk', 'eighties', 'synth-pop', 'new wave 11723 r&b', 'pop', 'eighties', 'motown', 'soul 11724 rock 11725 pop', 'new wave 11726 rock 11727 pop 11728 rock', 'pop', 'eighties', 'pop-rock 11729 pop 11730 pop 11731 rock 11732 pop 11733 r&b', 'pop', 'dance-pop', 'dance', 'disco', 'soul pop', 'soul', 'funk-pop', 'funk 11734 pop', 'filk', 'parody', 'new wave', 'comedy 11735 rock', 'pop', 'piano rock', 'synth rock', 'synth-pop', 'adult contemporary', 'album-oriented rock (aor)', 'singer-songwriter', 'uk', 'eighties', 'pop-rock', 'new wave', 'piano 11736 pop 11737 pop 11738 pop', 'pop-rock', 'alternative', 'new wave', 'uk', 'ska', 'eighties 11739 pop', 'singer-songwriter', 'eighties', 'power pop 11740 pop', 'girl group', 'spoken word 11741 pop 11742 rap', 'pop', 'r&b', 'electro-funk', 'eighties', 'bubblegum pop 11743 country', 'cover 11744 rock 11745 r&b', 'eighties', 'electro-funk', 'funk', 'soul 11746 pop 11747 pop 11748 pop', 'uk', 'eighties', 'synth-pop', 'new wave 11749 pop', 'ballad', 'soft rock 11750 rock', 'uk', 'funk', 'eighties 11751 pop 11752 pop', 'experimental pop', 'experimental', 'singer-songwriter', 'uk', 'electro-pop', 'synth-pop', 'eighties', 'new wave', 'memes 11753 pop 11754 pop 11755 pop', 'singer-songwriter', 'eighties 11756 rock', 'singer-songwriter', 'eighties', 'hard rock', 'uk 11757 pop 11758 rock', 'album-oriented rock (aor) 11759 r&b', 'pop', 'eighties', 'funk', 'soul pop 11760 pop 11761 r&b 11762 r&b', 'pop', 'soft rock', 'dance-pop', 'video game', 'singer-songwriter', 'eighties', 'funk', 'dance 11763 rock', 'pop', 'eighties', 'british rock', 'pop-rock', 'uk 11764 pop', 'new wave', 'disco', 'eighties 11765 pop', 'new wave 11766 pop 11767 rock', 'pop 11768 pop', 'eighties', 'new wave', 'synth-pop 11769 pop 11770 pop 11771 rock', 'pop', 'new wave 11772 rock', 'soft rock', 'eighties', 'ballad', 'dark pop', 'easy listening', 'uk', 'singer-songwriter', 'adult contemporary', 'pop-rock', 'new wave 11773 pop', 'pop-rock', 'eighties', 'synth-pop', 'new wave 11774 rock', 'pop', 'adult alternative', 'album-oriented rock (aor)', 'new wave', 'synth-pop', 'eighties', 'singer-songwriter', 'pop-rock 11775 pop', 'rock', 'eighties', 'uk', 'british rock', 'synth rock', 'dance rock', 'pop-rock', 'new wave', 'synth-pop 11776 rock 11777 pop 11778 pop', 'soundtrack', 'singer-songwriter', 'eighties', 'synth-pop', 'electronic', 'dance', 'memes 11779 r&b', 'pop', 'funk', 'soul', 'soul pop 11780 pop 11781 pop 11782 pop 11783 pop 11784 rock', 'canada', 'eighties', 'singer-songwriter', 'hard rock 11785 rock 11786 rock', 'australia', 'folk rock 11787 pop 11788 pop 11789 pop 11790 pop 11791 pop 11792 pop 11793 r&b', 'pop', 'funk 11794 pop 11795 rap 11796 pop 11797 pop', 'r&b', 'ballad', 'funk', 'electro-funk', 'electronic', 'eighties 11798 pop 11799 rock 11800 pop 11801 pop 11802 pop', 'electronic', 'dance 11803 rap 11804 rock', 'new wave', 'synth-pop', 'funk rock', 'eighties 11805 pop 11806 rock', 'pop', 'reggae rock', 'new wave', 'pop-rock', 'reggae 11807 rock', 'new wave', 'uk', 'singer-songwriter', 'eighties 11808 pop', 'pop-rock', 'eighties', 'theme song', 'soundtrack 11809 r&b 11810 pop 11811 pop 11812 pop 11813 rock 11814 rock', 'r&b', 'funk', 'yacht rock 11815 pop 11816 rock 11817 pop 11818 rock', 'eighties 11819 pop 11820 pop 11821 rock', 'progressive rock 11822 r&b', 'pop', 'eighties', 'adult contemporary', 'ballad', 'soul', 'soul pop 11823 rock', 'jamaica', 'reggae 11824 pop 11825 pop', 'rock', 'pop-rock', 'wales', 'piano', 'uk', 'eighties', 'ballad 11826 pop 11827 pop', 'rock', 'new wave', 'synth-pop 11828 pop', 'r&b', 'funk', 'soul pop 11829 rock 11830 pop', 'r&b', 'soft rock', 'adult contemporary', 'soul pop', 'yacht rock', 'soul', 'synth-pop', 'eighties', 'ballad 11831 pop 11832 rock', 'eighties 11833 pop 11834 r&b', 'pop', 'eighties', 'adult contemporary', 'soul', 'soul pop 11835 pop 11836 pop', 'rock', 'eighties', 'pop-rock', 'indie', 'alternative', 'alternative rock', 'indie rock', 'college rock 11837 rock', 'pop', 'euro-disco', 'eighties', 'disco', 'synth rock', 'pop-rock', 'french rock', 'french pop', 'france', 'synth-pop 11838 rock', 'pop', 'jazz', 'big band', 'pop-rock', 'soul pop', 'blue-eyed soul', 'eighties', 'singer-songwriter 11839 rock 11840 rock', 'australia', 'soft rock', 'ballad', 'eighties', 'piano', 'pop-rock 11841 pop 11842 rock', 'blue-eyed soul 11843 rock', 'electro-funk', 'dance rock', 'synth-pop', 'synth rock', 'post-punk', 'album-oriented rock (aor)', 'adult alternative', 'eighties', 'new wave', 'electro-pop', 'funk rock', 'art rock', 'pop-rock 11844 pop', 'r&b', 'rock', 'synth-pop', 'funk 11845 rock', 'power pop', 'alternative rock 11846 pop', 'r&b', 'funk', 'soul', 'soul pop 11847 pop 11848 pop 11849 pop', 'rock', 'uk', 'pop-rock', 'new wave 11850 pop', 'rock', 'easy listening', 'blue-eyed soul', 'eighties', 'adult contemporary', 'uk', 'ballad', 'jazz fusion', 'soul pop', 'synth-pop', 'new wave', 'jazz 11851 rock 11852 pop', 'dark wave', 'new wave', 'synth-pop 11853 rock', 'producer', 'singer-songwriter', 'screen', 'adult alternative', 'soundtrack', 'pop-rock 11854 pop', 'synth-pop', 'glam rock', 'blues rock', 'new wave 11855 pop 11856 pop 11857 pop 11858 rock 11859 pop 11860 pop 11861 pop', 'eighties', 'uk', 'reggae', 'pop-rock 11862 country 11863 pop 11864 pop 11865 rock 11866 pop 11867 pop', 'rock', 'pop-rock', 'new wave', 'soul pop', 'blue-eyed soul 11868 pop', 'piano', 'eighties', 'uk', 'reggae', 'ska', 'cover 11869 rap 11870 pop', 'singer-songwriter', 'dance-pop', 'eighties', 'uk 11871 rock 11872 pop 11873 pop 11874 rock', 'new wave', 'art rock', 'eighties', 'singer-songwriter 11875 rock', 'album-oriented rock (aor)', 'art rock', 'dance', 'eighties', 'adult alternative', 'pop-rock', 'new wave', 'synth rock 11876 pop', 'uk 11877 pop 11878 pop 11879 pop 11880 r&b', 'funk 11881 pop 11882 rock', 'pop', 'yacht rock', 'ballad', 'soft rock', 'adult contemporary', 'eighties', 'new wave', 'pop-rock 11883 rock', 'pop', 'r&b', 'funk-pop', 'funk', 'eighties', 'pop-rock', 'synth-pop 11884 r&b 11885 rock 11886 rock 11887 pop 11888 pop 11889 pop 11890 rap 11891 rock', 'pop', 'pop-rock 11892 pop 11893 rock', 'pop', 'eighties', 'adult contemporary', 'pop-rock 11894 r&b', 'pop', 'jazz', 'eighties 11895 r&b', 'rap', 'instrumental hip-hop', 'jazz fusion', 'dance', 'eighties', 'electro 11896 country 11897 pop 11898 pop 11899 pop 11900 r&b', 'pop', 'yacht rock', 'synth-pop', 'dance-pop', 'dance', 'soul', 'soul pop', 'funk-pop', 'eighties 11901 pop 11902 rock', 'eighties', 'adult alternative', 'uk', 'singer-songwriter', 'pop-rock', 'dance-pop', 'new wave 11903 pop', 'electro-pop', 'uk', 'eighties', 'new wave', 'synth-pop 11904 pop 11905 r&b 11906 rock', 'cover', 'eighties', 'glam rock', 'glam metal', 'metal 11907 pop', 'reggae', 'adult contemporary', 'memes', 'eighties', 'synth-pop', 'new wave 11908 country 11909 rock', 'pop', 'eighties', 'singer-songwriter', 'pop-rock 11910 pop 11911 rock', 'glam rock', 'eighties', 'new wave 11912 pop 11913 rock', 'eighties 11914 pop 11915 pop', 'new wave', 'synth-pop 11916 pop 11917 rap 11918 rock 11919 pop 11920 pop', 'uk', 'eighties', 'new wave', 'electro-pop', 'electronic', 'synth-pop 11921 pop 11922 pop', 'eighties 11923 rock', 'pop-rock', 'eighties 11924 pop 11925 pop', 'r&b', 'funk', 'eighties 11926 rock', 'synth rock', 'pop-rock', 'eighties', 'british rock', 'uk', 'hard rock', 'progressive rock 11927 rock', 'australia', 'hard rock 11928 pop 11929 r&b', 'pop', 'dance', 'funk-pop', 'dance-pop', 'eighties', 'funk', 'soul', 'soul pop 11930 r&b', 'pop', 'soul 11931 r&b 11932 pop', 'rock', 'eighties', 'new wave', 'pop-rock 11933 r&b', 'pop', 'eighties', 'girl group', 'soul', 'soul pop 11934 rock', 'hard rock 11935 pop 11936 rock', 'pop', 'singer-songwriter', 'disco', 'funk', 'funk-pop', 'uk', 'blues rock', 'pop-rock', 'eighties 11937 rock 11938 rock 11939 pop 11940 pop 11941 r&b', 'eighties 11942 country 11943 r&b', 'pop', 'soul', 'soul pop 11944 pop', 'r&b', 'eighties', 'ballad', 'bubblegum pop', 'soul', 'soul pop 11945 pop', 'new wave', 'eighties', 'uk 11946 pop 11947 rock', 'new wave', 'post-punk', 'alternative rock', 'celtic 11948 pop 11949 pop 11950 r&b 11951 pop 11952 pop 11953 pop 11954 rock 11955 rock 11956 r&b', 'pop', 'rock', 'eighties', 'yacht rock', 'soft rock', 'album-oriented rock (aor)', 'adult contemporary', 'blue-eyed soul', 'soul pop', 'soul', 'pop-rock 11957 pop', 'rock', 'ballad', 'soundtrack', 'soft rock', 'blues rock', 'eighties', 'singer-songwriter', 'pop-rock', 'piano', 'adult contemporary', 'blue-eyed soul', 'blues 11958 pop 11959 pop 11960 country 11961 pop', 'teen pop', 'bubblegum pop', 'eighties', 'dance-pop 11962 rap 11963 pop 11964 rock 11965 pop 11966 rock', 'pop-rock', 'uk', 'post-punk', 'eighties', 'new wave 11967 pop', 'eighties', 'uk', 'synth-pop', 'new wave 11968 rock', 'eighties', 'synth rock', 'new wave 11969 rock', 'pop', 'folk rock', 'pop-rock', 'singer-songwriter 11970 r&b', 'yacht rock', 'soul pop', 'soul', 'adult contemporary', 'funk', 'eighties 11971 rock', 'hard rock 11972 pop 11973 rock', 'uk 11974 pop 11975 rock', 'pop', 'electro-pop', 'funk 11976 rock', 'glam metal 11977 pop 11978 pop', 'r&b', 'synth-pop', 'electronic', 'electro', 'eighties', 'latin freestyle edm', 'soul pop', 'soul', 'electro-pop', 'dance', 'dance-pop 11979 pop 11980 pop 11981 pop', 'new wave 11982 pop 11983 rock', 'eighties', 'new wave', 'blue-eyed soul 11984 pop 11985 pop 11986 r&b', 'pop', 'eighties', 'soul pop', 'soul 11987 pop 11988 rock 11989 rock', 'pop', 'uk', 'singer-songwriter', 'eighties', 'piano', 'adult contemporary', 'british rock', 'pop-rock 11990 pop 11991 rock', 'heavy metal 11992 rock', 'art rock', 'minimalism', 'ballad', 'dance rock', 'electro-funk', 'eighties', 'funk rock', 'electronic rock', 'synth rock', 'post-punk', 'synth-pop', 'pop-rock', 'new wave 11993 pop 11994 pop 11995 pop 11996 pop', 'new wave', 'lgbtq+', 'eighties', 'british rock', 'singer-songwriter', 'uk 11997 pop 11998 pop 11999 pop 12000 pop 12001 rock 12002 pop 12003 pop', 'rap', 'comedy', 'disco', 'synth-pop', 'electro', 'electronic', 'eighties', 'hip-hop 12004 country', 'rock', 'heartland rock', 'rockabilly 12005 pop', 'yacht rock', 'ballad 12006 pop', 'new wave', 'neue deutsche welle', 'dance', 'protest songs', 'eighties', 'pop-rock', 'deutschsprachiger pop', 'deutschland 12007 pop', 'r&b', 'motown', 'soul', 'soul pop 12008 country', 'rock', 'synth-pop', 'cover 12009 pop 12010 pop 12011 r&b', 'soul 12012 pop 12013 r&b', 'funk 12014 rock 12015 rock', 'pop', 'orchestral', 'piano', 'pop-rock', 'blue-eyed soul', 'ballad', 'singer-songwriter', 'eighties 12016 rock', 'pop', 'pop-rock 12017 pop', 'disco', 'bubblegum pop', 'feminism', 'dance-pop', 'eighties 12018 pop 12019 rock', 'singer-songwriter 12020 rock', 'pop', 'r&b', 'funk-pop', 'pop-rock', 'synth-pop', 'eighties', 'funk 12021 rap', 'electro 12022 rock', 'eighties', 'ballad', 'british rock', 'uk', 'easy listening', 'singer-songwriter 12023 pop', 'dance-pop', 'synth-pop', 'disco', 'eighties 12024 r&b', 'eighties', 'soul', 'soul pop 12025 pop 12026 rock', 'indie rock 12027 pop 12028 rap 12029 r&b 12030 r&b', 'eighties', 'soul pop', 'adult contemporary', 'soul jazz', 'soul 12031 r&b 12032 rock', 'glam metal', 'hard rock', 'synth rock', 'eighties 12033 pop', 'synth-pop', 'new wave 12034 pop 12035 rock', 'dance rock', 'new wave', 'eighties 12036 pop', 'eighties 12037 pop 12038 pop 12039 rock', 'alternative rock', 'post-punk 12040 rock 12041 rock', 'synth-pop', 'funk', 'soul', 'punk rock 12042 pop', 'synth-pop', 'new wave 12043 pop 12044 rock', 'pop 12045 pop 12046 pop 12047 pop 12048 pop', 'uk', 'eighties', 'new wave', 'synth-pop 12049 rock', 'singer-songwriter', 'eighties', 'soundtrack', 'pop-rock 12050 pop', 'r&b', 'halloween', 'eighties', 'motown', 'electro-pop', 'electronic', 'synth-pop 12051 r&b', 'pop', 'adult contemporary', 'soul pop', 'soul', 'eighties', 'girl group', 'funk', 'electro-funk', 'electro-pop', 'synth-pop 12052 pop', 'uk', 'eighties', 'cover', 'adult alternative', 'adult contemporary', 'reggae 12053 rock', 'uk', 'singer-songwriter', 'eighties', 'new wave', 'hard rock 12054 pop 12055 pop 12056 pop 12057 rock 12058 pop 12059 rap 12060 pop 12061 rock', 'pop', 'folk rock 12062 rock', 'uk 12063 pop 12064 rock 12065 pop 12066 pop 12067 r&b', 'pop', 'dance', 'soul pop', 'dance-pop', 'dark pop', 'soundtrack', 'eighties', 'halloween', 'funk', 'synth-pop', 'soul 12068 pop 12069 pop', 'new wave', 'synth-pop', 'eighties 12070 rock 12071 r&b', 'eighties', 'funk', 'soul pop', 'soul 12072 pop 12073 rock 12074 rock', 'pop', 'pop-rock 12075 pop 12076 pop 12077 rock 12078 pop 12079 pop', 'rock', 'electronic rock', 'british rock', 'uk', 'eighties', 'pop-rock', 'synth rock', 'synth-pop 12080 pop 12081 pop 12082 pop 12083 rock', 'new wave 12084 pop 12085 pop', 'rock', 'singer-songwriter', 'eighties', 'soundtrack', 'ballad', 'adult contemporary', 'pop-rock 12086 r&b 12087 r&b', 'singer-songwriter', 'memes', 'eighties', 'ballad 12088 rock', 'uk', 'eighties', 'electronica', 'pop-rock', 'soundtrack 12089 pop', 'eighties', 'dance', 'scandinavia', 'danmark 12090 pop 12091 pop', 'r&b', 'eighties', 'soul', 'soul pop 12092 rock 12093 pop 12094 rock', 'synth rock', 'eighties 12095 pop 12096 pop', 'glam rock', 'uk', 'singer-songwriter', 'eighties', 'new wave 12097 rock', 'eighties', 'progressive rock', 'new wave', 'pop-rock 12098 pop 12099 pop 12100 country 12101 pop 12102 pop 12103 r&b 12104 pop 12105 pop 12106 rock', 'new wave', 'singer-songwriter', 'eighties 12107 r&b', 'rock', 'pop', 'dance rock', 'hard rock', 'parody', 'food', 'comedy 12108 pop', 'bubblegum pop', 'teen pop', 'eighties', 'adult contemporary', 'dance-pop', 'synth-pop 12109 pop', 'rock', 'pop-rock', 'new wave 12110 pop 12111 pop', 'progressive rock', 'eighties', 'satire 12112 pop 12113 rock', 'glam metal', 'metal', 'album-oriented rock (aor)', 'ballad', 'hard rock', 'eighties 12114 pop 12115 pop', 'eighties', 'new wave', 'pop-rock', 'alternative rock 12116 rock', 'power pop', 'emo', 'pop-punk 12117 pop 12118 r&b 12119 pop 12120 pop 12121 r&b', 'pop', 'motown', 'soul', 'soul pop 12122 rock', 'pop', 'piano', 'pop-rock', 'blue-eyed soul', 'singer-songwriter', 'eighties', 'doo-wop', 'a cappella 12123 pop 12124 pop 12125 pop', 'adult alternative', 'alternative pop', 'eighties', 'new wave', 'synth-pop 12126 rock', 'eighties', 'hard rock', 'glam metal 12127 pop 12128 pop 12129 pop', 'latin freestyle edm', 'electro 12130 rap', 'remix 12131 pop', 'new wave', 'blue-eyed soul', 'synth-pop 12132 pop 12133 rock', 'pop', 'adult contemporary', 'ballad', 'glam rock', 'eighties', 'singer-songwriter', 'pop-rock 12134 pop', 'eighties', 'soundtrack 12135 pop 12136 pop 12137 r&b', 'pop', 'funk 12138 rock', 'pop', 'pop-rock', 'dance rock', 'uk', 'eighties', 'hi-nrg', 'new wave 12139 r&b', 'motown', 'funk', 'soul 12140 r&b', 'soul 12141 rock', 'progressive rock 12142 pop 12143 pop 12144 rock', 'eighties', 'synth rock', 'glam metal', 'pop-rock', 'hard rock', 'heavy metal 12145 pop', 'rock', 'ballad', 'singer-songwriter', 'eighties 12146 pop', 'rock', 'adult contemporary', 'cover', 'pop-rock', 'eighties', 'italo disco 12147 pop 12148 country', 'rock', 'cover 12149 r&b 12150 pop', 'eighties', 'synth-pop', 'new wave 12151 rock', 'eighties', 'pop-rock 12152 pop 12153 rock', 'album-oriented rock (aor) 12154 pop 12155 rock', 'alternative rock', 'alternative 12156 pop', 'rock', 'new wave 12157 rock 12158 r&b', 'pop', 'adult contemporary', 'eighties', 'girl group', 'soul', 'soul pop', 'electro-pop', 'synth-pop 12159 pop 12160 rock', 'electronic rock', 'synth rock', 'synth-pop', 'british rock', 'uk', 'eighties', 'pop-rock 12161 pop', 'r&b', 'eighties', 'funk', 'soul', 'soul pop 12162 pop 12163 rock 12164 pop 12165 pop', 'r&b', 'soul pop', 'soul 12166 rock', 'adult contemporary', 'funk rock', 'ballad', 'synth rock', 'eighties', 'pop-rock', 'soft rock 12167 pop', 'uk', 'eighties', 'new wave', 'synth-pop 12168 rock', 'dark pop', 'dark wave', 'ballad', 'synth rock', 'eighties', 'uk', 'synth-pop', 'new wave 12169 pop 12170 pop', 'piano', 'comedy', 'parody', 'new wave 12171 pop', 'eighties 12172 pop 12173 pop', 'eighties', 'soundtrack', 'disco 12174 pop 12175 pop', 'new wave 12176 pop 12177 rock', 'pop', 'soundtrack', 'pop-rock 12178 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 12179 r&b', 'soul 12180 rock', 'pop', 'eighties 12181 rock 12182 pop', 'progressive rock 12183 pop', 'alternative', 'alternative pop', 'piano', 'electro-pop', 'indie pop', 'uk 12184 pop 12185 pop 12186 country 12187 pop', 'r&b', 'rock', 'eighties', 'adult contemporary', 'ballad', 'soundtrack', 'pop-rock', 'soul pop', 'soul 12188 pop 12189 rock 12190 rock 12191 rock', 'eighties', 'heartland rock', 'singer-songwriter', 'pop-rock', 'synth-pop', 'synth rock 12192 rock', 'uk 12193 pop 12194 pop 12195 rock', 'eighties', 'canada', 'new wave', 'synth rock', 'singer-songwriter', 'synth-pop', 'pop-rock 12196 r&b', 'pop', 'eighties', 'motown', 'soul', 'soul pop 12197 pop 12198 r&b', 'funk 12199 rock', 'eighties 12200 pop', 'r&b', 'rock', 'minimalism', 'avant-pop', 'avant garde', 'funk rock', 'soul pop', 'soul', 'psychedelic', 'psychedelic soul', 'psychedelic rock', 'neo-psychedelia', 'experimental pop', 'experimental', 'producer', 'singer-songwriter', 'eighties', 'soundtrack', 'funk 12201 pop 12202 pop 12203 pop 12204 pop 12205 pop 12206 pop 12207 rock', 'pop-rock', 'power pop', 'eighties', 'soundtrack 12208 rap', 'electronic 12209 pop', 'rock', 'new wave', 'eighties', 'uk', 'soft rock', 'pop-rock 12210 pop', 'soul', 'funk', 'electronic', 'ballad', 'synth-pop 12211 pop 12212 rock', 'hard rock 12213 rock', 'dance rock', 'british rock', 'uk', 'eighties', 'protest songs', 'synth rock 12214 pop', 'r&b', 'soul', 'soul pop 12215 rock 12216 pop', 'dance rock', 'soundtrack', 'singer-songwriter', 'synth-pop', 'eighties 12217 rock', 'pop', 'pop-rock', 'eighties 12218 pop 12219 pop 12220 pop', 'rock', 'disney', 'ballad', 'teen pop', 'cover', 'pop-rock', 'soundtrack 12221 r&b', 'pop', 'eighties', 'synth-pop 12222 rock', 'eighties', 'glam metal', 'metal 12223 pop 12224 rock', 'glam metal 12225 pop 12226 pop 12227 rock', 'eighties', 'heavy metal', 'hard rock', 'glam metal 12228 r&b', 'country', 'yacht rock 12229 rock', 'eighties', 'synth rock', 'new wave', 'pop-rock', 'progressive rock 12230 pop 12231 rock', 'pop', 'soft rock', 'eighties', 'adult contemporary', 'synth rock', 'synth-pop 12232 pop 12233 r&b', 'rock', 'pop', 'eighties', 'funk', 'funk rock', 'synth-pop', 'pop-rock 12234 pop', 'album-oriented rock (aor)', 'pop-rock', 'eighties 12235 pop 12236 pop 12237 rock', 'new wave', 'power pop', 'eighties', 'pop-rock', 'parody', 'comedy 12238 pop 12239 pop 12240 pop 12241 r&b', 'pop', 'funk', 'soul', 'soul pop 12242 pop', 'uk', 'electro-pop', 'eighties', 'new wave', 'synth-pop 12243 pop 12244 rock', 'pop', 'pop-rock', 'soul pop', 'blue-eyed soul', 'eighties', 'singer-songwriter 12245 pop 12246 pop 12247 rock', 'ballad', 'eighties', 'hard rock 12248 pop 12249 pop', 'r&b', 'electro-funk', 'dance', 'dance-pop', 'soul pop', 'eighties', 'soul', 'funk 12250 r&b 12251 pop 12252 pop 12253 pop 12254 pop', 'funk 12255 rock 12256 pop 12257 pop 12258 rock', 'pop', 'adult contemporary', 'soft rock', 'eighties', 'pop-rock 12259 rock', 'pop', 'eighties', 'new wave 12260 pop 12261 pop', 'uk', 'eighties', 'calypso', 'new wave', 'synth-pop 12262 pop', 'electro-funk', 'funk', 'uk', 'eighties', 'synth-pop', 'new wave 12263 pop 12264 rock 12265 pop', 'blue-eyed soul', 'new wave', 'synth-pop 12266 pop', 'eighties 12267 rock', 'baroque pop', 'art rock', 'british rock', 'ballad', 'piano', 'uk', 'eighties', 'pop-rock 12268 rock', 'eighties', 'metal', 'heavy metal', 'hard rock', 'glam rock', 'glam metal 12269 pop', 'rock 12270 pop 12271 pop 12272 r&b', 'rock', 'funk-pop', 'new wave', 'disco', 'eighties', 'singer-songwriter', 'pop-rock', 'soundtrack', 'funk 12273 pop', 'rock', 'singer-songwriter', 'eighties', 'synth-pop', 'new wave', 'ballad', 'adult contemporary', 'pop-rock 12274 rock', 'adult contemporary', 'synth rock', 'soft rock', 'ballad', 'eighties 12275 pop', 'pop-rock', 'dance-pop 12276 rock 12277 rock', 'pop', 'eighties', 'soundtrack', 'pop-rock 12278 rap', 'clean up 12279 country 12280 rock', 'singer-songwriter', 'eighties', 'heartland rock', 'pop-rock 12281 pop 12282 pop 12283 r&b 12284 pop 12285 r&b', 'pop', 'easy listening', 'yacht rock', 'singer-songwriter', 'eighties', 'soul 12286 pop', 'r&b', 'eighties', 'funk', 'electro-funk', 'synth-pop', 'soul pop', 'soul 12287 pop 12288 pop 12289 rock', 'new wave 12290 rock', 'pop', 'eighties', 'funk', 'funk rock', 'pop-rock', 'electro-pop', 'soul', 'soul pop', 'synth-pop 12291 pop', 'r&b', 'ballad', 'eighties', 'synth-pop', 'soul pop', 'soul 12292 pop 12293 pop 12294 pop 12295 rap 12296 rock', 'pop 12297 pop 12298 rock 12299 pop', 'dance-pop', 'eighties', 'synth-pop 12300 pop', 'uk 12301 rock', 'new wave', 'pop-rock', 'hard rock', 'synth rock', 'synth-pop', 'uk 12302 pop 12303 pop 12304 pop 12305 r&b', 'pop 12306 pop 12307 pop 12308 rock', 'pop 12309 rock', 'hard rock 12310 pop', 'ballad 12311 pop', 'r&b', 'rap', 'eighties', 'disco', 'dance 12312 rock', 'album-oriented rock (aor)', 'pop-rock', 'eighties 12313 pop', 'soundtrack', 'bubblegum pop', 'uk', 'new wave', 'eighties', 'singer-songwriter 12314 pop 12315 rock', 'pop 12316 r&b', 'pop', 'funk-pop 12317 pop 12318 rock', 'pop-rock 12319 pop 12320 rock', 'new wave', 'punk rock 12321 pop 12322 pop 12323 r&b', 'pop', 'eighties', 'soul', 'soul pop', 'funk 12324 rap', 'emo rap 12325 rock', 'switzerland', 'hard rock 12326 pop 12327 rap 12328 pop', 'r&b', 'eighties', 'bubblegum pop 12329 pop 12330 pop 12331 r&b', 'rock', 'pop', 'memes', 'blue-eyed soul', 'soul pop', 'soul', 'singer-songwriter', 'eighties', 'pop-rock', 'yacht rock 12332 pop 12333 rock 12334 pop 12335 rock', 'metal 12336 pop 12337 rock', 'pop', 'electronic', 'synth rock', 'synth-pop', 'pop-rock 12338 pop 12339 r&b', 'soul 12340 r&b', 'pop', 'girl group', 'hi-nrg', 'dance', 'soul', 'synth-pop 12341 pop', 'r&b', 'rock', 'orchestral', 'gospel', 'blues', 'ballad', 'adult contemporary', 'singer-songwriter', 'eighties', 'soul', 'soul pop', 'soundtrack 12342 pop', 'adult contemporary', 'ballad', 'eighties', 'new wave', 'synth-pop 12343 rock 12344 pop 12345 pop 12346 pop 12347 r&b', 'eighties', 'new wave', 'synth-pop 12348 pop 12349 rock', 'pop-rock', 'british rock', 'singer-songwriter', 'ballad', 'eighties', 'soundtrack 12350 r&b', 'rock 12351 pop 12352 rock', 'glam rock', 'glam metal 12353 r&b 12354 pop 12355 r&b', 'pop', 'yacht rock', 'smooth jazz', 'jazz', 'soul pop', 'soul', 'ballad 12356 r&b 12357 pop 12358 pop 12359 rock 12360 pop', 'dance-pop', 'uk', 'politics', 'protest songs', 'eighties', 'hi-nrg', 'dance 12361 rock', 'eighties', 'album-oriented rock (aor)', 'metal', 'heavy metal', 'glam metal', 'glam rock', 'hard rock 12362 pop 12363 pop 12364 pop', 'eighties', 'funk', 'synth-pop', 'girl group 12365 pop 12366 rock 12367 rock 12368 pop 12369 pop 12370 r&b', 'pop', 'eighties', 'funk', 'soul', 'synth-pop', 'soul pop 12371 rock 12372 pop 12373 rock', 'eighties', 'heavy metal', 'glam metal', 'hard rock 12374 rock', 'alternative rock', 'eighties', 'ireland', 'history', 'civil rights', 'adult alternative', 'pop-rock', 'post-punk 12375 r&b', 'rock', 'dance', 'funk 12376 pop 12377 rock', 'dark ambient', 'dark pop', 'ambient', 'singer-songwriter', 'art pop', 'art', 'science fiction', 'adult contemporary', 'adult alternative', 'noise rock', 'noise pop', 'noise', 'british rock', 'synthwave', 'synth rock', 'new wave', 'synth-pop', 'electro-pop', 'pop-rock', 'art rock 12378 rock', 'eighties', 'canada 12379 pop 12380 rock', 'uk 12381 pop', 'adult contemporary 12382 rock', 'pop-rock', 'album-oriented rock (aor)', 'protest songs', 'singer-songwriter', 'eighties', 'heartland rock 12383 pop 12384 rock', 'singer-songwriter', 'adult contemporary', 'eighties', 'pop-rock 12385 pop 12386 pop 12387 pop 12388 pop 12389 r&b', 'pop', 'eighties', 'producer', 'singer-songwriter', 'soul pop', 'soul 12390 rock 12391 pop', 'teen pop', 'eighties', 'dance-pop', 'synth-pop', 'dance 12392 rock', 'soft rock', 'pop-rock', 'ballad', 'easy listening', 'adult contemporary', 'eighties', 'singer-songwriter 12393 r&b', 'pop', 'funk 12394 rock 12395 pop 12396 pop 12397 pop 12398 r&b 12399 pop 12400 r&b', 'pop', 'eighties', 'soundtrack', 'funk', 'electro-pop', 'synth-pop', 'dance-pop', 'dance 12401 r&b 12402 pop', 'adult contemporary', 'soft rock', 'album-oriented rock (aor)', 'pop-rock', 'eighties', 'singer-songwriter 12403 pop', 'avant garde', 'electronica', 'new wave', 'synth-pop 12404 pop 12405 pop', 'neue deutsche welle', 'eighties', 'deutschland', 'new wave', 'synth-pop 12406 pop 12407 r&b', 'soundtrack', 'motown', 'singer-songwriter', 'funk', 'eighties', 'synth-pop', 'soul pop', 'soul 12408 rock', 'pop-rock 12409 rock', 'reggae rock', 'pop-rock 12410 r&b', 'pop', 'memorial 12411 pop 12412 pop 12413 rock', 'album-oriented rock (aor)', 'adult contemporary', 'eighties', 'ballad 12414 pop', 'soundtrack', 'pop-rock 12415 rap 12416 pop 12417 pop 12418 pop', 'r&b', 'rock', 'singer-songwriter', 'glam rock', 'eighties', 'soundtrack', 'funk 12419 rock', 'pop', 'eighties', 'yacht rock', 'pop-rock 12420 pop', 'new wave 12421 pop 12422 pop 12423 r&b', 'pop', 'singer-songwriter', 'eighties', 'synth-pop', 'pop-rock 12424 pop 12425 rock 12426 pop', 'uk 12427 pop 12428 pop 12429 r&b', 'pop', 'soft rock', 'memes', 'alternative r&b', 'power pop', 'soundtrack', 'uk r&b', 'adult contemporary', 'ballad', 'uk', 'singer-songwriter', 'yacht rock', 'eighties 12430 rock', 'new wave', 'eighties 12431 pop', 'dance-pop', 'synth-pop 12432 rock 12433 pop', 'rock', 'uk', 'eighties', 'charity', 'holiday', 'synth-pop', 'new wave', 'christmas 12434 pop', 'r&b', 'eighties', 'bubblegum pop 12435 pop', 'eighties', 'scotland', 'uk', 'electro', 'electro-pop', 'alternative pop', 'alternative', 'lgbtq+', 'synth-pop', 'new wave 12436 rock 12437 rock 12438 pop 12439 rock', 'hard rock 12440 rock', 'jump blues 12441 pop', 'latin freestyle edm', 'disco', 'electro 12442 rap 12443 pop', 'soul 12444 rock 12445 pop', 'rock', 'soft rock', 'piano rock', 'piano', 'eighties', 'adult contemporary', 'ballad', 'pop-rock 12446 r&b', 'rock', 'pop-rock', 'soft rock', 'blues rock', 'blues', 'roots', 'eighties', 'punk rock 12447 pop 12448 pop 12449 pop 12450 r&b 12451 pop 12452 pop 12453 rock 12454 rock', 'singer-songwriter', 'album-oriented rock (aor)', 'adult contemporary', 'new wave', 'pop-rock 12455 rock', 'pop', 'pop-rock', 'eighties', 'singer-songwriter 12456 pop 12457 r&b', 'gospel 12458 pop 12459 pop 12460 rock', 'lovers rock 12461 pop 12462 pop', 'electronic', 'eighties', 'synth-pop', 'new wave 12463 pop', 'rock', 'eighties', 'electronic rock', 'art pop', 'art rock', 'ballad', 'pop-rock', 'new wave', 'synth-pop 12464 rock 12465 pop 12466 pop 12467 pop 12468 pop 12469 pop', 'dance-pop', 'feminism', 'teen pop', 'eighties', 'synth-pop 12470 pop 12471 pop', 'rock', 'synth-pop', 'synth rock', 'soft rock', 'singer-songwriter', 'ballad', 'smooth jazz', 'eighties', 'adult contemporary', 'uk', 'pop-rock 12472 pop 12473 pop 12474 rock', 'new wave', 'pop-rock 12475 pop 12476 country', 'rock', 'folk 12477 rock', 'pop-rock', 'singer-songwriter', 'eighties', 'heartland rock', 'folk rock 12478 r&b', 'pop', 'eighties', 'soundtrack', 'motown', 'dance', 'dance-pop', 'soul', 'soul pop 12479 rock 12480 r&b 12481 rock', 'pop-rock', 'progressive rock 12482 pop 12483 pop', 'r&b', 'soul pop', 'soundtrack 12484 rock', 'adult contemporary', 'synth rock', 'funk rock', 'eighties 12485 pop 12486 rock 12487 rock', 'pop', 'pop-rock', 'new wave 12488 r&b', 'live', 'screen', 'funk 12489 pop', 'rock', 'scotland', 'uk', 'soundtrack', 'adult contemporary', 'adult alternative', 'new wave', 'synth-pop', 'pop-rock', 'eighties', 'theme song 12490 pop 12491 pop 12492 pop', 'eighties', 'ballad', 'soundtrack 12493 pop 12494 pop', 'r&b', 'new wave', 'eighties', 'uk', 'uk r&b', 'singer-songwriter', 'adult contemporary', 'funk-pop', 'funk', 'smooth jazz', 'soul jazz', 'jazz', 'soul pop', 'soul 12495 pop 12496 pop 12497 r&b 12498 rock 12499 rap', 'boom bap', 'east coast 12500 pop 12501 pop 12502 r&b', 'pop', 'girl group', 'motown', 'funk', 'soul pop 12503 pop 12504 pop 12505 rock 12506 pop 12507 rock', 'pop', 'alternative dance', 'funk rock 12508 rock 12509 pop 12510 pop', 'uk', 'soundtrack', 'synth rock', 'synth-pop', 'singer-songwriter', 'eighties', 'new wave 12511 pop', 'r&b', 'eighties', 'funk', 'soul', 'soul pop 12512 r&b', 'pop', 'funk', 'soul', 'soul pop 12513 r&b', 'pop', 'eighties', 'adult contemporary', 'world music', 'soul', 'soul pop', 'charity', 'gospel 12514 r&b', 'rock', 'pop', 'video game', 'adult contemporary', 'soul pop', 'new wave', 'britpop', 'uk', 'eighties', 'singer-songwriter 12515 pop 12516 pop 12517 pop', 'eighties', 'big band', 'jazz 12518 r&b', 'eighties 12519 rock', 'pop', 'singer-songwriter', 'adult alternative', 'britpop', 'uk', 'album-oriented rock (aor)', 'adult contemporary', 'pop-rock', 'new wave', 'synth-pop 12520 r&b', 'pop', 'eighties', 'girl group', 'electronic', 'electro', 'dance', 'dance-pop', 'electro-pop', 'electro-funk', 'funk 12521 rock', 'latin rock 12522 pop', 'rock 12523 pop', 'eighties', 'new wave', 'synth-pop', 'soundtrack', 'theme song 12524 pop 12525 pop 12526 pop 12527 pop 12528 pop', 'neue deutsche welle', 'ballad', 'eighties', 'deutschland', 'new wave', 'synth-pop 12529 rock', 'pop 12530 rock', 'r&b', 'funk rock', 'funk', 'synth-pop 12531 r&b', 'pop', 'eighties', 'bubblegum pop 12532 pop 12533 rock 12534 pop', 'synth-pop', 'latin freestyle edm', 'electro 12535 pop 12536 pop 12537 pop 12538 pop 12539 rock 12540 pop', 'new wave 12541 rap', 'nba 12542 rock 12543 pop 12544 rock', 'eighties', 'synth rock', 'canada', 'ballad 12545 rock 12546 r&b', 'rock', 'punk rock 12547 rock', 'pop', 'adult contemporary', 'eighties', 'soft rock', 'ballad', 'pop-rock 12548 rock', 'eighties', 'soundtrack 12549 pop 12550 pop 12551 pop', 'dance-pop', 'eighties', 'dance 12552 rock', 'pop', 'uk', 'eighties', 'pop-rock', 'funk rock 12553 pop 12554 pop 12555 pop 12556 r&b', 'adult contemporary 12557 pop', 'dance-pop', 'synth-pop', 'disco', 'pop-rock', 'uk', 'eighties 12558 pop 12559 pop 12560 pop 12561 rock', 'power pop 12562 rap', 'hardcore hip-hop', 'trap', 'hip-hop', 'youtube', 'intro 12563 pop 12564 pop 12565 pop 12566 pop 12567 rock', 'pop 12568 pop 12569 rock 12570 rock', 'eighties', 'dance-pop', 'uk', 'adult contemporary', 'pop-rock', 'funk', 'funk-pop', 'dance rock 12571 pop 12572 pop', 'r&b', 'eighties', 'soul', 'soul pop 12573 pop', 'eighties', 'cover', 'yacht rock 12574 pop 12575 pop', 'eighties 12576 pop', 'girl group', 'eighties 12577 pop', 'eighties', 'synth-pop 12578 pop', 'r&b', 'rock', 'pop-rock', 'adult contemporary', 'soul', 'soul pop', 'neo-psychedelia', 'psychedelic soul', 'baroque pop', 'eighties 12579 pop', 'uk', 'eighties', 'orchestral', 'theme song', 'new wave', 'synth-pop', 'soundtrack 12580 pop', 'synth-pop', 'new wave', 'eighties', 'soundtrack 12581 rock', 'pop-rock 12582 pop', 'christian 12583 rock 12584 rock', 'new wave 12585 pop 12586 pop 12587 pop 12588 pop 12589 pop 12590 rock 12591 pop 12592 rock', 'blues rock', 'progressive rock 12593 pop', 'new wave', 'uk', 'eighties', 'industrial', 'synth-pop 12594 pop 12595 pop 12596 pop 12597 pop 12598 rock', 'singer-songwriter', 'eighties', 'heartland rock', 'pop-rock 12599 pop', 'eighties', 'pop-rock', 'new wave', 'synth-pop 12600 rock', 'pop-rock', 'hard rock', 'eighties 12601 r&b', 'pop', 'eighties', 'motown', 'soul', 'soul pop 12602 pop', 'history', 'trip-hop', 'protest songs', 'producer', 'dance', 'dance-pop', 'electronic', 'electro-pop', 'synth-pop', 'eighties 12603 rock 12604 pop 12605 pop', 'disco', 'uk', 'eighties', 'hi-nrg', 'memes', 'new wave', 'synth-pop 12606 pop', 'uk', 'eighties', 'synth-pop 12607 rock', 'eighties', 'dance rock', 'uk', 'british rock', 'smooth jazz', 'jazz fusion', 'jazz rock', 'soul jazz', 'soul pop', 'blue-eyed soul', 'soul', 'electronic rock', 'synth rock', 'funk rock', 'pop-rock 12608 pop 12609 pop 12610 pop 12611 rock 12612 pop 12613 pop', 'rock', 'art rock', 'art pop', 'pop-rock', 'uk', 'british rock', 'industrial rock', 'dark wave', 'dark pop', 'industrial', 'eighties', 'singer-songwriter', 'progressive rock', 'new wave 12614 r&b', 'synth-pop', 'eighties', 'soul 12615 rock', 'pop', 'pop-rock 12616 pop 12617 pop 12618 rock 12619 pop 12620 r&b', 'soul 12621 pop', 'dance-pop', 'parody', 'comedy 12622 pop', 'r&b', 'jazz', 'uk', 'uk r&b', 'soul jazz', 'singer-songwriter', 'soul pop', 'soul 12623 rock', 'eighties', 'pop-rock', 'dance rock 12624 pop', 'rock', 'pop-rock', 'soundtrack 12625 rock', 'canada', 'pop-rock', 'glam rock', 'singer-songwriter', 'eighties 12626 pop 12627 r&b', 'soul 12628 rock 12629 r&b', 'rock', 'choral music', 'new wave', 'pop-rock', 'eighties 12630 pop 12631 pop 12632 pop', 'r&b', 'yacht rock', 'adult contemporary', 'ballad', 'soul pop', 'soul', 'eighties 12633 pop 12634 rock', 'glam metal', 'heavy metal 12635 pop 12636 rock 12637 r&b', 'pop', 'eighties', 'bay area', 'girl group', 'dance', 'dance-pop', 'electro', 'electro-pop', 'soul pop', 'synth-pop 12638 rock', 'eighties 12639 pop 12640 rock', 'uk', 'eighties', 'pop-rock', 'new wave', 'hard rock 12641 rock', 'glam metal', 'heavy metal', 'hard rock 12642 pop', 'intro', 'new wave', 'memes', 'scandipop', 'scandinavia', 'eighties', 'norge', 'synth-pop 12643 pop', 'rock', 'synth rock', 'synth-pop', 'pop-rock', 'eighties', 'uk 12644 pop 12645 r&b 12646 pop', 'r&b', 'eighties 12647 pop', 'eighties 12648 pop 12649 rap', 'pop', 'pop rap', 'experimental hip-hop', 'dubstep', 'hyperpop', 'electronic 12650 pop 12651 pop 12652 pop', 'disco', 'piano', 'bubblegum pop', 'adult contemporary', 'teen pop', 'new wave', 'eighties', 'singer-songwriter', 'britpop', 'uk 12653 pop', 'r&b', 'rock', 'funk', 'eighties 12654 rock', 'pop', 'eighties', 'yacht rock', 'pop-rock', 'synth-pop 12655 pop', 'comedy 12656 pop 12657 pop 12658 pop 12659 pop', 'synth-pop', 'reggae', 'lovers rock', 'eighties', 'uk', 'cover 12660 pop 12661 rock 12662 pop 12663 pop 12664 rock 12665 r&b', 'pop', 'disco', 'funk 12666 rock', 'glam rock', 'eighties 12667 pop 12668 pop', 'singer-songwriter', 'pop-rock 12669 pop 12670 rap', 'boom bap', 'hardcore hip-hop', 'trap', 'gangsta rap', 'conscious hip-hop', 'g-funk', 'memes', 'west coast', 'producer 12671 rock', 'pop', 'eighties 12672 pop 12673 rock 12674 pop 12675 pop', 'synth-pop', 'teen pop', 'dance-pop', 'eighties 12676 pop', 'r&b', 'eighties', 'adult contemporary', 'soul pop', 'soul 12677 rock 12678 pop 12679 pop 12680 pop 12681 pop 12682 rock 12683 rock', 'heartland rock 12684 rock 12685 pop 12686 pop', 'synth-pop', 'dance-pop', 'new wave 12687 pop 12688 rap 12689 rock 12690 rock', 'pop', 'dance rock', 'pop-rock', 'british rock', 'uk 12691 rock', 'pop', 'album-oriented rock (aor)', 'eighties', 'new wave', 'synth rock', 'synth-pop', 'pop-rock', 'adult alternative', 'adult contemporary 12692 rap 12693 pop 12694 pop', 'soul 12695 pop 12696 rock', 'pop', 'screen', 'soundtrack', 'new wave 12697 pop', 'r&b', 'eighties', 'motown', 'synth-pop', 'soul pop', 'soul 12698 rock', 'pop-rock', 'singer-songwriter', 'eighties', 'heartland rock 12699 pop 12700 pop 12701 rock', 'dance rock', 'pop-rock', 'electronic rock', 'synth rock', 'soundtrack', 'hard rock', 'eighties 12702 r&b', 'pop', 'adult contemporary', 'soul', 'soul pop 12703 pop 12704 pop 12705 pop', 'rock', 'album-oriented rock (aor)', 'adult alternative', 'eighties', 'new wave', 'psychedelic rock', 'art rock', 'funk', 'indie pop', 'indie rock 12706 pop 12707 rock', 'adult alternative', 'british rock', 'uk', 'new wave', 'progressive rock', 'britpop', 'album-oriented rock (aor)', 'adult contemporary', 'piano', 'ballad', 'eighties', 'synth-pop', 'glam rock 12708 rock 12709 rock 12710 pop 12711 rock', 'pop-rock', 'hard rock 12712 r&b', 'pop', 'eighties', 'dance', 'dance-pop', 'uk', 'uk r&b', 'electro-funk', 'electro-pop 12713 pop', 'girl group', 'eighties 12714 rock 12715 pop 12716 pop 12717 pop', 'rock', 'ballad', 'adult contemporary', 'soft rock', 'synth rock', 'eighties', 'album-oriented rock (aor)', 'pop-rock', 'new wave 12718 r&b', 'pop', 'funk', 'pop-rock 12719 pop 12720 rap 12721 pop 12722 pop 12723 r&b', 'rock 12724 r&b', 'pop', 'baroque pop 12725 pop 12726 pop 12727 pop', 'r&b', 'eighties', 'funk 12728 r&b', 'funk-pop 12729 pop 12730 pop 12731 rock', 'uk', 'eighties', 'power pop', 'ballad 12732 pop 12733 pop 12734 rock 12735 pop 12736 r&b', 'pop', 'eighties', 'new wave', 'synth-pop 12737 rock', 'eighties', 'progressive rock 12738 pop 12739 rock', 'pop', 'new wave', 'synth-pop', 'pop-rock 12740 pop 12741 r&b', 'eighties', 'dance 12742 pop 12743 rock', 'glam metal', 'heavy metal 12744 rock', 'synth rock', 'eighties', 'hard rock 12745 pop', 'rock', 'uk', 'scotland', 'eighties', 'adult alternative', 'synth rock', 'synthwave', 'synth-pop', 'new wave', 'pop-rock 12746 r&b', 'rock 12747 r&b', 'pop', 'rock', 'pop-rock', 'protest songs', 'eighties', 'funk-pop', 'funk 12748 pop 12749 rock 12750 pop 12751 pop 12752 pop', 'cuba', 'dance', 'eighties', 'latin music', 'latin pop 12753 pop', 'new wave', 'british rock', 'britpop', 'art pop', 'art rock', 'electronic rock', 'electro-pop', 'pop-rock 12754 rock', 'eighties', 'uk', 'pop-rock 12755 pop 12756 r&b 12757 pop 12758 pop 12759 pop 12760 pop 12761 rock', 'glam rock', 'eighties', 'piano', 'hard rock', 'ballad', 'glam metal 12762 rock', 'album-oriented rock (aor)', 'adult contemporary', 'heartland rock', 'roots 12763 rock', 'new wave 12764 rock', 'eighties', 'pop-rock 12765 rock', 'soundtrack', 'hard rock 12766 r&b', 'rap', 'rock', 'protest songs 12767 pop', 'eighties', 'bay area', 'girl group', 'yacht rock', 'adult contemporary', 'synth-pop', 'soul pop 12768 r&b', 'pop', 'eighties', 'bubblegum pop 12769 pop 12770 rock', 'eighties', 'uk', 'british rock', 'reggae rock', 'reggae', 'dance rock', 'synth rock', 'pop-rock 12771 pop', 'r&b', 'eighties', 'adult contemporary', 'soul pop', 'soul', 'easy listening 12772 country', 'rock 12773 pop 12774 rock 12775 rock', 'pop-rock', 'synth rock 12776 rock', 'pop', 'pop-rock 12777 pop', 'dance', 'eighties', 'electro-pop', 'latin freestyle', 'dance-pop 12778 r&b', 'pop', 'eighties', 'synth-pop', 'funk', 'soul 12779 pop 12780 pop 12781 rock 12782 pop 12783 rock 12784 rock 12785 pop', 'r&b', 'motown', 'singer-songwriter', 'funk', 'eighties', 'synth-pop', 'soul pop', 'soul 12786 pop 12787 pop 12788 country 12789 pop', 'r&b', 'uk r&b', 'uk', 'soul jazz', 'singer-songwriter', 'smooth jazz', 'soul pop', 'soul', 'jazz 12790 pop 12791 pop', 'dance-pop 12792 pop 12793 pop 12794 rock', 'pop', 'eighties', 'norge', 'new wave', 'synth-pop 12795 rock', 'metal', 'glam metal', 'hard rock', 'heavy metal 12796 pop 12797 rock 12798 pop 12799 rock', 'pop-rock', 'folk rock', 'singer-songwriter', 'eighties', 'heartland rock 12800 pop', 'r&b', 'bubblegum pop', 'disco', 'synth-pop', 'dance', 'eighties', 'dance-pop 12801 rock 12802 rock', 'british rock', 'uk', 'eighties', 'hard rock 12803 r&b', 'rock', 'soundtrack', 'soul pop', 'funk-pop', 'soul', 'funk', 'eighties 12804 pop 12805 rap 12806 r&b', 'pop', 'eighties', 'funk', 'soul', 'soul pop 12807 r&b', 'pop 12808 pop 12809 pop 12810 pop 12811 pop 12812 r&b 12813 pop 12814 rock 12815 pop 12816 pop 12817 rock', 'yacht rock', 'eighties', 'ballad', 'pop-rock', 'adult contemporary', 'soft rock 12818 r&b 12819 r&b', 'pop', 'dance 12820 pop', 'rock', 'singer-songwriter', 'eighties', 'new wave', 'pop-rock 12821 pop 12822 pop 12823 r&b', 'pop', 'eighties', 'funk', 'electro-funk 12824 rap 12825 pop 12826 rock', 'pop-rock', 'hard rock', 'eighties 12827 rock', 'singer-songwriter', 'baroque pop', 'eighties', 'uk', 'british rock', 'politics', 'protest songs', 'art rock', 'orchestral', 'symphonic rock', 'pop-rock', 'synth rock 12828 rock', 'hard rock', 'synth rock', 'eighties 12829 pop', 'rock', 'new wave', 'eighties', 'uk', 'pop-rock', 'synth-pop', 'adult contemporary 12830 pop', 'r&b', 'synth-pop 12831 pop', 'synth-pop', 'new wave 12832 rock', 'pop', 'eighties', 'pop-rock 12833 pop 12834 rock', 'adult alternative', 'alternative rock', 'pop-rock', 'dance-pop', 'new wave 12835 rock 12836 rock', 'pop-rock', 'new wave 12837 country 12838 rock', 'pop-rock', 'eighties 12839 pop', 'rock', 'deutschland', 'österreich 12840 rock', 'new wave 12841 rock', 'new wave 12842 pop 12843 rap 12844 rock', 'singer-songwriter', 'eighties', 'heartland rock 12845 pop', 'new wave', 'art pop', 'art rock', 'bedroom pop', 'pop-rock 12846 rock 12847 rock 12848 r&b', 'soul pop', 'soul 12849 rock', 'pop 12850 pop 12851 pop 12852 rock', 'pop', 'art pop', 'art rock', 'new wave 12853 rap', 'österreich', 'deutschsprachiger rap', 'deutschland 12854 pop', 'rock 12855 pop 12856 r&b 12857 pop', 'synth-pop', 'eighties', 'pop-rock 12858 pop 12859 r&b', 'pop', 'eighties', 'uk', 'uk r&b', 'electro-funk', 'electro-pop', 'dance', 'dance-pop 12860 pop 12861 rock 12862 rap 12863 pop 12864 pop 12865 pop 12866 rock', 'ballad', 'eighties', 'soft rock', 'post-punk', 'pop-rock 12867 r&b', 'pop', 'girl group', 'eighties', 'soul 12868 rock', 'singer-songwriter', 'british rock', 'uk', 'new wave', 'alternative rock 12869 pop', 'r&b', 'rock', 'singer-songwriter', 'synth-pop', 'hip-hop', 'eighties', 'soundtrack', 'funk 12870 pop', 'rock', 'pop-rock 12871 pop 12872 pop', 'r&b', 'eighties', 'motown', 'soul pop', 'soul 12873 rock', 'pop 12874 r&b', 'pop', 'eighties', 'bubblegum pop 12875 pop', 'r&b', 'singer-songwriter', 'dance-pop', 'eighties', 'dance 12876 rock', 'pop-rock 12877 pop', 'electronic', 'adult alternative', 'uk', 'new wave', 'eighties', 'dance-pop', 'synth-pop 12878 pop 12879 pop 12880 pop', 'electronic rock', 'pop-rock 12881 r&b', 'pop', 'eighties', 'bay area', 'girl group', 'pop-rock', 'electro', 'electro-pop', 'dance', 'dance-pop', 'synth-pop 12882 country 12883 pop 12884 pop', 'eighties', 'latin pop', 'dance 12885 pop', 'soundtrack', 'synth-pop', 'eighties 12886 rock', 'pop 12887 pop', 'soundtrack', 'disco', 'eighties', 'dance 12888 pop 12889 pop 12890 rock 12891 rock 12892 country', 'pop', 'rock', 'americana', 'eighties', 'piano', 'singer-songwriter', 'garage rock', 'electric blues', 'blues rock', 'blues', 'southern rock', 'hard rock', 'heartland rock', 'pop-rock 12893 pop', 'rock', 'mental health', 'album-oriented rock (aor)', 'adult contemporary', 'uk', 'new wave', 'electronic rock', 'singer-songwriter', 'eighties', 'pop-rock 12894 r&b', 'pop', 'soul', 'soul pop 12895 pop', 'uk', 'pop-rock', 'synth-pop', 'electronic', 'northern ireland', 'eighties 12896 pop 12897 pop 12898 pop 12899 rock', 'pop', 'uk', 'synth-pop', 'rock pop', 'soft rock', 'album-oriented rock (aor)', 'eighties', 'pop-rock 12900 pop 12901 r&b', 'eighties', 'ballad', 'adult contemporary', 'soul jazz', 'soul pop', 'soul 12902 r&b', 'soul 12903 rock', 'australia', 'hard rock 12904 rock', 'hard rock', 'heavy metal', 'metal 12905 pop', 'r&b', 'eighties', 'cover', 'adult contemporary', 'soul', 'soul pop 12906 pop 12907 pop', 'rock', 'hard rock', 'pop-rock', 'ballad', 'synth rock', 'eighties 12908 pop', 'r&b', 'synth-pop', 'uk', 'uk r&b', 'soul jazz', 'singer-songwriter', 'funk', 'soul pop', 'soul', 'jazz 12909 pop 12910 rock 12911 pop 12912 pop 12913 pop 12914 rock 12915 rock', 'pop', 'pop-rock 12916 r&b', 'pop', 'rock', 'yacht rock', 'soul', 'soul pop', 'smooth jazz', 'blue-eyed soul', 'adult contemporary', 'piano', 'ballad', 'jazz fusion', 'pop-rock 12917 pop', 'new wave', 'soul pop', 'ska 12918 pop 12919 pop', 'adult contemporary', 'singer-songwriter', 'screen', 'ballad', 'soundtrack', 'synth-pop', 'eighties 12920 rock', 'singer-songwriter', 'eighties 12921 rock', 'pop', 'uk', 'british rock', 'art pop', 'art rock', 'synth-pop', 'synth rock', 'eighties', 'singer-songwriter', 'new wave 12922 pop 12923 r&b', 'latin freestyle 12924 pop 12925 rock', 'new wave', 'post-punk', 'alternative rock 12926 pop', 'electronic', 'italo disco 12927 pop 12928 rock', 'pop', 'new wave', 'pop-rock 12929 pop 12930 rock', 'hard rock 12931 pop 12932 pop 12933 rock', 'singer-songwriter', 'experimental rock', 'eighties', 'post-punk', 'new wave 12934 rock', 'blues rock 12935 pop 12936 pop', 'r&b', 'soul pop', 'soul 12937 r&b', 'pop', 'singer-songwriter', 'uk 12938 rock', 'heartland rock 12939 pop', 'rap', 'neue deutsche welle', 'electro-pop', 'synth-pop', 'electronic', 'deutschsprachiger rap', 'österreich 12940 rap 12941 pop 12942 pop 12943 pop 12944 pop 12945 rap', 'west coast 12946 pop', 'r&b 12947 pop 12948 pop 12949 pop 12950 pop 12951 pop 12952 pop', 'rock', 'soundtrack', 'eighties', 'synth-pop 12953 rock 12954 rock', 'uk', 'eighties', 'blue-eyed soul', 'art pop', 'art rock', 'new wave', 'funk rock', 'pop-rock', 'soul', 'funk 12955 pop', 'synth-pop', 'techno', 'house', 'electronic 12956 rock 12957 rock 12958 pop', 'r&b', 'funk', 'singer-songwriter', 'dance', 'eighties', 'dance-pop', 'new jack swing 12959 rock', 'pop', 'soft rock', 'adult contemporary', 'ballad', 'pop-rock 12960 pop', 'r&b', 'eighties', 'funk', 'soul pop', 'soul 12961 pop', 'pop-rock 12962 pop 12963 rock', 'suomi 12964 r&b', 'pop', 'funk 12965 pop 12966 rock', 'electronic rock', 'pop-rock', 'hard rock 12967 country', 'pop', 'rock', 'album-oriented rock (aor)', 'adult contemporary', 'ballad', 'americana', 'eighties', 'piano', 'singer-songwriter', 'garage rock', 'electric blues', 'blues rock', 'blues', 'southern rock', 'hard rock', 'heartland rock', 'pop-rock 12968 pop', 'r&b', 'rock', 'eighties', 'singer-songwriter', 'psychedelic soul', 'soundtrack 12969 pop 12970 rock 12971 r&b', 'soul', 'soul pop 12972 r&b', 'pop', 'cover', 'ballad', 'electronic', 'soul', 'dance 12973 pop 12974 pop 12975 rock', 'dance rock', 'uk', 'eighties 12976 pop', 'uk 12977 pop', 'eighties', 'uk', 'dance-pop', 'electronic', 'synth-pop 12978 pop 12979 pop 12980 pop 12981 pop 12982 pop 12983 pop', 'latin freestyle edm 12984 pop 12985 pop 12986 pop 12987 pop 12988 pop', 'rock', 'singer-songwriter', 'album-oriented rock (aor)', 'eighties', 'blue-eyed soul', 'adult contemporary', 'pop-rock 12989 r&b', 'rap', 'pop', 'nu disco', 'eighties', 'electro-funk', 'funk', 'synth-pop 12990 pop 12991 r&b', 'pop', 'eighties', 'ballad', 'bubblegum pop 12992 pop', 'eighties', 'latin pop', 'ballad 12993 pop 12994 pop', 'r&b', 'motown', 'singer-songwriter', 'funk', 'soul pop', 'synth-pop', 'soul 12995 pop', 'soundtrack', 'eighties 12996 pop 12997 pop 12998 rock', 'eighties', 'singer-songwriter 12999 rock', 'dance rock', 'british rock', 'uk', 'eighties', 'pop-rock 13000 pop 13001 pop 13002 r&b', 'pop', 'eighties', 'soul', 'soul pop', 'synth-pop 13003 pop', 'baroque pop', 'singer-songwriter', 'dance-pop', 'eighties 13004 rock 13005 rock', 'pop', 'soft rock', 'album-oriented rock (aor)', 'adult alternative', 'jazz fusion', 'eighties', 'yacht rock', 'britpop', 'british rock', 'adult contemporary', 'new wave', 'uk', 'pop-rock 13006 pop 13007 pop', 'rock', 'pop-rock', 'hi-nrg', 'uk', 'eighties', 'dance-pop 13008 pop 13009 pop 13010 pop', 'rock', 'piano', 'soft rock', 'blues rock', 'pop-rock', 'yacht rock', 'eighties', 'switzerland 13011 pop 13012 pop 13013 rock', 'glam metal', 'hard rock 13014 r&b', 'pop', 'cover', 'ballad', 'soul', 'soul pop', 'eighties 13015 rap 13016 pop 13017 pop', 'new wave 13018 pop 13019 pop 13020 pop 13021 r&b', 'pop 13022 pop', 'pop-rock 13023 pop', 'dance-pop', 'dance 13024 rock', 'pop 13025 pop 13026 r&b', 'pop', 'dance', 'soul 13027 rock', 'pop-rock', 'hard rock 13028 pop', 'r&b', 'rock', 'singer-songwriter', 'eighties', 'funk', 'soundtrack 13029 rock 13030 r&b', 'pop', 'adult contemporary', 'soul pop', 'soul jazz', 'politics', 'soul 13031 pop 13032 pop 13033 rock', 'hard rock', 'synth rock', 'eighties 13034 rock', 'rap', 'rap rock', 'hard rock 13035 pop', 'uk', 'eighties', 'new wave', 'soul', 'pop-rock 13036 r&b', 'pop', 'ballad', 'soul pop', 'soul 13037 rock', 'adult contemporary', 'album-oriented rock (aor)', 'eighties', 'piano', 'pop-rock 13038 pop 13039 pop 13040 rock', 'pop', 'eighties 13041 pop', 'pop-rock 13042 rock', 'synth rock', 'synth-pop', 'funk rock', 'funk', 'uk', 'pop-rock', 'eighties', 'singer-songwriter 13043 rock 13044 pop 13045 pop 13046 pop 13047 r&b', 'pop', 'singer-songwriter', 'dance-pop', 'eighties', 'dance', 'new jack swing 13048 rock', 'synth rock 13049 rock', 'pop', 'pop-rock 13050 r&b 13051 rock', 'pop', 'singer-songwriter', 'world music', 'synth rock', 'synth-pop', 'eighties', 'pop-rock 13052 pop 13053 r&b 13054 pop 13055 rock 13056 rock', 'uk', 'eighties 13057 r&b', 'pop', 'soul', 'soul pop 13058 r&b', 'pop', 'eighties', 'synth-pop', 'soul', 'soul pop', 'cover 13059 country', 'rock', 'pop', 'americana', 'eighties', 'piano', 'singer-songwriter', 'garage rock', 'electric blues', 'blues rock', 'blues', 'southern rock', 'hard rock', 'heartland rock', 'pop-rock 13060 pop 13061 rock', 'album-oriented rock (aor)', 'eighties', 'hard rock', 'pop-rock 13062 pop 13063 rock 13064 pop 13065 rap 13066 r&b', 'soul pop', 'soul 13067 pop 13068 pop', 'rock', 'canada', 'synth-pop 13069 rap', 'cloud rap', 'jazz rap', 'jazz fusion 13070 rock', 'pop-rock', 'funk rock', 'punk rock 13071 pop', 'eighties', 'lgbtq+', 'ballad 13072 rock', 'singer-songwriter', 'glam rock', 'ballad', 'eighties', 'new wave 13073 rock', 'uk 13074 pop', 'comedy 13075 rock', 'pop', 'adult contemporary', 'soft rock', 'eighties', 'yacht rock', 'ballad 13076 pop', 'dance-pop', 'synth-pop 13077 pop 13078 pop 13079 pop', 'rock', 'eighties', 'psychedelic rock', 'experimental', 'art rock', 'funk', 'indie pop', 'indie rock 13080 rock 13081 rock', 'eighties', 'glam metal', 'hard rock', 'metal 13082 r&b', 'pop', 'uk r&b', 'new jack swing', 'ballad', 'synth-pop', 'blue-eyed soul', 'soul', 'uk', 'eighties 13083 r&b', 'soul pop', 'eighties', 'funk-pop', 'funk 13084 pop 13085 r&b', 'synth-pop', 'new jack swing', 'eighties', 'new wave 13086 pop 13087 pop 13088 pop 13089 rock 13090 pop 13091 rock', 'ballad', 'album-oriented rock (aor)', 'piano', 'yacht rock', 'civil rights', 'producer', 'singer-songwriter', 'adult contemporary', 'new wave', 'pop-rock 13092 pop 13093 pop 13094 pop 13095 rock', 'eighties', 'ballad 13096 rock', 'r&b', 'cover 13097 pop 13098 rock', 'pop', 'anime', 'pop-rock', 'eighties 13099 pop 13100 pop 13101 pop 13102 pop 13103 pop', 'dance-pop', 'eighties 13104 r&b', 'soul 13105 rock', 'uk 13106 pop', 'dance rock', 'pop-rock', 'new wave 13107 pop 13108 rock 13109 rock 13110 rock', 'pop-rock', 'alternative rock 13111 pop', 'synth-pop', 'latin freestyle edm 13112 pop', 'new wave', 'britpop', 'uk 13113 r&b', 'motown', 'funk', 'soul 13114 rock', 'pop 13115 r&b', 'pop', 'dance-pop', 'adult contemporary', 'soul pop', 'soul', 'funk-pop', 'funk', 'blue-eyed soul', 'eighties 13116 pop 13117 rock', 'memes', 'new wave', 'pop-rock', 'eighties 13118 pop 13119 pop 13120 r&b 13121 rock 13122 pop 13123 pop', 'r&b', 'funk', 'soul', 'soul pop 13124 rock 13125 rock 13126 pop 13127 rock', 'pop-rock', 'art rock', 'art pop', 'new wave', 'progressive rock 13128 pop 13129 r&b', 'synth-pop', 'funk 13130 pop 13131 rap 13132 pop', 'eighties', 'pop-rock', 'synth-pop 13133 pop 13134 pop', 'funk-pop', 'synth-pop', 'new wave 13135 rock', 'british rock', 'protest songs', 'uk', 'eighties', 'progressive rock', 'new wave', 'hard rock', 'pop-rock', 'synth rock 13136 r&b 13137 pop', 'r&b', 'dance-pop', 'singer-songwriter', 'eighties', 'dance 13138 pop 13139 pop 13140 pop 13141 rock', 'pop', 'eighties', 'pop-rock', 'synth rock', 'synth-pop', 'dance', 'dance-pop', 'uk 13142 pop', 'ballad', 'latin pop', 'eighties 13143 rock', 'pop', 'singer-songwriter', 'yacht rock', 'adult contemporary', 'easy listening', 'soft rock', 'eighties', 'blue-eyed soul 13144 r&b', 'pop', 'soul', 'funk 13145 pop', 'soul 13146 r&b', 'pop', 'soul', 'soul pop 13147 pop 13148 r&b', 'funk', 'jazz-funk', 'jazz', 'soul jazz', 'eighties', 'soul 13149 pop', 'synth-pop 13150 rock', 'glam metal', 'glam rock 13151 pop', 'rock 13152 rock', 'pop', 'pop-rock 13153 rock', 'synth rock', 'adult contemporary', 'pop-rock', 'soft rock', 'ballad', 'eighties 13154 r&b 13155 country', 'pop', 'rock', 'americana', 'eighties', 'piano', 'singer-songwriter', 'garage rock', 'electric blues', 'blues rock', 'blues', 'southern rock', 'hard rock', 'heartland rock', 'pop-rock 13156 rock', 'pop-rock 13157 r&b 13158 pop 13159 rock 13160 pop 13161 rock 13162 pop', 'r&b 13163 pop 13164 pop 13165 rock', 'eighties', 'hard rock', 'southern rock 13166 rock 13167 pop', 'eighties', 'new wave', 'dance', 'dance-pop 13168 r&b 13169 pop', 'uk 13170 pop', 'rock', 'progressive rock', 'art rock', 'art pop', 'funk rock 13171 pop 13172 pop', 'r&b', 'soul', 'soul pop 13173 rock 13174 pop', 'dance-pop', 'synth-pop 13175 rock 13176 pop', 'singer-songwriter', 'dance-pop', 'eighties 13177 rock', 'eighties 13178 r&b', 'soul 13179 rock', 'singer-songwriter 13180 r&b', 'pop', 'soul', 'blue-eyed soul', 'funk-pop', 'dance-pop', 'electro-funk', 'funk', 'uk r&b', 'uk', 'new jack swing', 'eighties', 'new wave', 'soul pop 13181 rock', 'pop', 'singer-songwriter', 'folk rock', 'folk', 'world music 13182 pop', 'r&b', 'soul', 'soul pop 13183 pop 13184 pop', 'eighties', 'uk', 'italo disco', 'dance-pop', 'synth-pop 13185 pop 13186 rock', 'album-oriented rock (aor)', 'ballad', 'eighties', 'glam metal', 'hard rock', 'glam rock 13187 rock 13188 pop 13189 pop 13190 rock', 'pop 13191 pop 13192 r&b', 'eighties 13193 pop 13194 pop 13195 pop 13196 r&b', 'rock', 'funk 13197 pop', 'dance-pop', 'hi-nrg', 'uk', 'eighties', 'dance 13198 r&b 13199 r&b', 'new jack swing', 'soul pop', 'soul', 'remix 13200 pop', 'synth-pop', 'eighties', 'uk 13201 pop 13202 pop 13203 pop 13204 rock 13205 pop 13206 country', 'rock', 'pop-rock', 'ballad', 'piano', 'adult alternative', 'yacht rock', 'soft rock', 'eighties', 'adult contemporary', 'album-oriented rock (aor) 13207 pop', 'r&b', 'eighties', 'singer-songwriter 13208 pop', 'r&b', 'eighties', 'soul', 'soul pop 13209 r&b', 'soul 13210 rock', 'dream pop', 'new wave', 'singer-songwriter', 'eighties', 'australia', 'ballad', 'adult alternative', 'pop-rock 13211 pop 13212 pop 13213 rock', 'uk 13214 pop 13215 pop 13216 pop', 'pop-rock', 'new wave', 'scandipop', 'norge', 'scandinavia', 'synth-pop 13217 rock', 'synth rock', 'svensk rock', 'glam rock', 'scandinavia', 'sverige', 'glam metal', 'eighties 13218 pop 13219 pop 13220 pop 13221 pop 13222 rap 13223 rock 13224 rock', 'ballad', 'eighties', 'album-oriented rock (aor) 13225 pop 13226 rock', 'heartland rock', 'singer-songwriter 13227 rock', 'pop 13228 pop', 'funk-pop', 'synth-pop', 'new wave 13229 pop 13230 r&b', 'rock 13231 rock 13232 r&b 13233 r&b 13234 pop 13235 r&b', 'pop', 'soul', 'soul pop 13236 rock', 'adult contemporary', 'alternative rock', 'uk', 'eighties', 'pop-rock', 'art rock', 'progressive rock 13237 r&b 13238 pop 13239 rock', 'eighties', 'ballad 13240 pop 13241 pop 13242 pop 13243 pop 13244 pop 13245 pop', 'r&b', 'adult contemporary', 'eighties', 'soul pop', 'soul', 'pop-rock', 'synth-pop', 'blue-eyed soul 13246 pop 13247 pop 13248 rock 13249 pop 13250 pop 13251 pop 13252 pop 13253 rap', 'east coast 13254 pop 13255 pop 13256 rap', 'eighties', 'rap rock 13257 pop', 'funk', 'soul 13258 rock 13259 r&b', 'eighties', 'new jack swing', 'funk 13260 pop 13261 pop', 'eighties 13262 pop', 'power pop', 'uk', 'eighties', 'soundtrack', 'pop-rock', 'new wave 13263 r&b', 'pop', 'eighties', 'synth-pop', 'funk 13264 rock', 'pop', 'singer-songwriter', 'folk', 'world music', 'folk rock', 'pop-rock 13265 rock 13266 rap 13267 pop', 'cover 13268 rock 13269 rap 13270 rock', 'alternative', 'pop-rock', 'new wave', 'alternative rock 13271 r&b 13272 pop 13273 pop', 'adult contemporary', 'dance-pop', 'singer-songwriter', 'spanish music', 'latin pop', 'latin music', 'eighties 13274 rock', 'album-oriented rock (aor)', 'soft rock', 'eighties', 'singer-songwriter', 'ballad', 'adult contemporary', 'adult alternative', 'pop-rock', 'ireland 13275 rap', 'hip-hop', 'eighties', 'east coast 13276 rock', 'adult contemporary', 'funk rock', 'pop-rock', 'soft rock', 'eighties 13277 pop', 'latin freestyle edm 13278 rock', 'pop', 'alternative rock', 'power pop', 'new wave', 'pop-rock 13279 pop 13280 pop', 'rock', 'alternative', 'alternative rock', 'adult alternative', 'progressive rock', 'avant-pop', 'easy listening', 'soft rock', 'uk', 'pop-rock', 'eighties', 'psychedelic rock', 'psychedelic 13281 rock 13282 r&b', 'soul 13283 pop 13284 pop', 'r&b', 'adult contemporary', 'soul pop', 'soul', 'ballad 13285 rock 13286 r&b', 'soul 13287 pop 13288 pop 13289 pop 13290 pop', 'uk', 'eighties', 'cover', 'new wave', 'hi-nrg 13291 pop 13292 r&b', 'rock', 'pop-rock 13293 pop', 'new wave', 'synth-pop', 'eighties', 'uk 13294 pop', 'rock', 'ballad', 'progressive rock', 'art pop', 'art rock', 'pop-rock 13295 rock 13296 pop 13297 pop 13298 rock', 'glam metal', 'metal', 'hard rock 13299 pop 13300 pop 13301 r&b', 'pop', 'jazz-funk', 'new jack swing', 'jazz fusion', 'eighties', 'dance', 'jazz 13302 pop 13303 pop 13304 pop 13305 country', 'adult contemporary', 'ballad', 'eighties', 'pop country 13306 r&b', 'synth-pop 13307 pop 13308 pop 13309 rap 13310 pop', 'rock', 'piano', 'soft rock', 'singer-songwriter', 'eighties', 'easy listening', 'adult contemporary', 'ballad', 'uk', 'synth rock', 'synth-pop', 'pop-rock 13311 rock 13312 rock 13313 pop 13314 rock 13315 rock', 'uk 13316 pop 13317 rock', 'new wave 13318 pop 13319 pop', 'funk-pop', 'synth-pop', 'new wave 13320 rock', 'svensk rock', 'scandinavia', 'sverige 13321 rock', 'power pop', 'pop-rock', 'australia 13322 pop', 'electro', 'disco', 'funk 13323 pop', 'new wave 13324 pop 13325 pop 13326 pop 13327 r&b', 'rock', 'punk rock 13328 rock', 'pop 13329 pop 13330 pop 13331 pop 13332 pop', 'r&b', 'eighties', 'soul pop', 'adult contemporary', 'synth-pop', 'dance 13333 rock', 'eighties', 'ballad 13334 pop', 'eighties 13335 pop 13336 rap 13337 rock', 'hard rock 13338 pop', 'r&b', 'eighties', 'dance 13339 r&b', 'eighties', 'dance 13340 r&b 13341 pop 13342 rock 13343 pop 13344 pop', 'afrobeat', 'latin music', 'cuba', 'latin pop', 'eighties', 'dance 13345 rock', 'hard rock', 'glam metal', 'metal 13346 pop 13347 pop', 'r&b', 'rock', 'psychedelic soul', 'funk 13348 r&b', 'rock', 'pop', 'album-oriented rock (aor)', 'adult contemporary', 'ballad', 'blue-eyed soul', 'pop-rock 13349 pop', 'yacht rock', 'theme song', 'smooth jazz', 'ballad', 'jazz', 'soul', 'soul pop 13350 pop 13351 r&b 13352 pop 13353 r&b', 'disco', 'soul pop', 'funk-pop', 'eighties', 'synth-pop', 'funk', 'soul 13354 pop 13355 pop', 'rock', 'pop-rock', 'alternative rock', 'singer-songwriter', 'folk pop', 'folk rock 13356 rock', 'pop-rock', 'eighties', 'adult contemporary', 'adult alternative', 'gospel', 'alternative rock', 'ireland 13357 rock 13358 pop 13359 pop 13360 pop', 'dance-pop 13361 pop 13362 pop 13363 r&b 13364 rock', 'uk', 'british rock', 'eighties', 'heavy metal', 'hard rock', 'glam metal', 'metal 13365 pop 13366 rap 13367 pop', 'rock', 'adult alternative', 'alternative', 'alternative rock', 'progressive rock', 'avant-pop', 'easy listening', 'album-oriented rock (aor)', 'soft rock', 'uk', 'glam rock', 'yacht rock', 'art rock', 'art pop', 'pop-rock', 'eighties', 'psychedelic rock', 'psychedelic 13368 pop 13369 rock 13370 rock', 'pop', 'pop-rock', 'british rock', 'uk', 'electronic rock', 'electronic', 'new wave 13371 r&b', 'pop', 'eighties', 'synth-pop 13372 pop 13373 rock', 'pop', 'synth-pop', 'pop-rock', 'british rock', 'uk', 'new wave', 'indie rock', 'alternative rock 13374 r&b', 'soul 13375 pop 13376 pop 13377 r&b', 'pop', 'soul', 'soul pop 13378 rock', 'pop', 'soundtrack', 'cover', 'screen', 'en español 13379 pop 13380 pop 13381 r&b 13382 rock', 'album-oriented rock (aor)', 'glam metal', 'glam rock', 'eighties 13383 pop 13384 r&b', 'pop', 'piano', 'adult contemporary', 'blue-eyed soul', 'uk', 'soul pop', 'soul', 'memorial', 'eighties 13385 pop 13386 pop 13387 pop 13388 pop', 'dance-pop', 'eighties', 'soundtrack 13389 pop 13390 rap 13391 pop 13392 rap 13393 pop 13394 rock', 'adult contemporary', 'pop-rock', 'soft rock', 'funk rock', 'synth rock', 'eighties', 'ballad 13395 pop 13396 pop 13397 pop 13398 r&b', 'soul 13399 rock', 'hard rock', 'celtic 13400 r&b', 'pop', 'eighties', 'soul', 'soul pop 13401 pop 13402 r&b', 'pop', 'eighties', 'ballad', 'jazz', 'soul 13403 rock', 'adult alternative', 'folk rock 13404 rap 13405 r&b', 'eighties', 'dance', 'funk', 'soul 13406 r&b', 'pop', 'eighties', 'dance', 'dance-pop', 'synth-pop', 'funk', 'electro-pop', 'electro-funk 13407 pop', 'dark wave', 'dance', 'alternative', 'eighties', 'uk', 'synth-pop 13408 pop 13409 pop', 'r&b', 'adult contemporary', 'ballad', 'soul', 'soul pop 13410 r&b', 'pop', 'rap 13411 pop', 'r&b', 'rock', 'dance', 'funk 13412 rock', 'scandinavia', 'sverige', 'svensk rock 13413 r&b', 'pop 13414 pop 13415 pop 13416 pop', 'new wave 13417 pop 13418 pop 13419 r&b', 'pop', 'easy listening', 'soul pop', 'ballad', 'eighties', 'singer-songwriter 13420 rock', 'art rock', 'pop-rock 13421 pop 13422 pop', 'electronic', 'eighties', 'switzerland 13423 rock', 'pop-rock', 'australia 13424 pop 13425 rock 13426 pop 13427 pop 13428 pop 13429 r&b', 'funk', 'soul pop 13430 pop', 'eighties', 'swing jazz', 'soul 13431 pop 13432 pop 13433 rock 13434 pop', 'latin freestyle edm 13435 r&b', 'pop', 'eighties', 'synth-pop 13436 pop 13437 rock', 'heavy metal', 'hard rock 13438 pop', 'r&b', 'soul', 'soul pop 13439 rock 13440 pop 13441 pop 13442 rock', 'synth-pop', 'eighties', 'soft rock', 'singer-songwriter', 'uk', 'pop-rock 13443 rap 13444 rock', 'bubblegum pop', 'cover', 'eighties', 'teen pop 13445 r&b 13446 rock', 'blues rock', 'pop-rock', 'eighties', 'british rock', 'uk 13447 pop 13448 pop 13449 pop 13450 pop 13451 pop', 'eighties', 'uk', 'dance-pop', 'synth-pop 13452 rock', 'dance rock', 'eighties', 'uk', 'cover 13453 pop 13454 pop 13455 pop 13456 pop', 'latin pop 13457 pop', 'eighties', 'dance-pop', 'soundtrack 13458 rock', 'ireland', 'eighties', 'post-punk', 'new wave', 'pop-rock', 'alternative rock 13459 rock', 'pop 13460 r&b 13461 pop 13462 pop', 'screen', 'soundtrack 13463 pop 13464 rock', 'metal', 'glam metal 13465 rock', 'r&b', 'pop', 'soundtrack', 'funk', 'singer-songwriter', 'eighties 13466 pop 13467 pop 13468 rock', 'pop', 'eighties', 'uk', 'pop-rock 13469 rock', 'adult alternative', 'alternative rock', 'post-punk 13470 pop 13471 pop 13472 rock', 'pop', 'singer-songwriter', 'pop-rock', 'eighties', 'adult contemporary 13473 rock', 'eighties', 'pop-rock', 'power pop 13474 rock', 'pop', 'funk', 'adult contemporary', 'soul pop', 'ballad', 'soundtrack', 'eighties 13475 pop 13476 pop 13477 pop 13478 rock 13479 rock', 'glam metal 13480 rock', 'heartland rock', 'pop-rock', 'singer-songwriter', 'eighties 13481 pop 13482 pop 13483 pop 13484 r&b', 'pop', 'eighties', 'funk', 'synth-pop 13485 rock', 'eighties', 'glam rock', 'hard rock', 'singer-songwriter 13486 rock', 'british rock', 'jazz rock', 'art pop', 'art rock', 'synth rock', 'electro-funk', 'pop-rock', 'funk rock', 'uk', 'eighties 13487 rock 13488 r&b 13489 rock', 'electronic rock', 'synth rock', 'pop-rock', 'art rock', 'british rock', 'uk', 'album-oriented rock (aor)', 'eighties', 'progressive rock 13490 pop 13491 pop 13492 rock', 'singer-songwriter', 'dream pop', 'eighties', 'gothic rock', 'post-punk', 'uk', 'british rock', 'new wave', 'alternative rock 13493 pop', 'r&b', 'rock', 'eighties', 'motown', 'soul', 'soul pop', 'singer-songwriter 13494 r&b 13495 r&b 13496 pop 13497 pop 13498 country 13499 rock', 'pop', 'new wave', 'synth-pop 13500 rock', 'uk', 'british rock', 'album-oriented rock (aor)', 'adult contemporary', 'glam metal', 'eighties', 'ballad 13501 pop', 'r&b', 'rock', 'uk', 'pop-rock', 'adult contemporary', 'piano', 'eighties', 'singer-songwriter', 'blue-eyed soul', 'soul', 'funk 13502 rock', 'uk', 'album-oriented rock (aor)', 'adult contemporary', 'cover', 'eighties 13503 rock', 'heartland rock 13504 pop 13505 rock', 'album-oriented rock (aor)', 'australia', 'funk rock', 'hard rock', 'eighties 13506 pop', 'rock', 'uk', 'eighties', 'new wave', 'alternative rock', 'dance', 'alternative dance 13507 pop 13508 pop 13509 r&b', 'eighties', 'dance', 'dance-pop', 'synth-pop', 'soul pop', 'soul 13510 pop 13511 rap 13512 r&b 13513 pop 13514 r&b', 'new jack swing 13515 pop', 'seventies', 'memorial', 'piano', 'singer-songwriter', 'pop-rock', 'uk', 'ballad 13516 pop 13517 pop 13518 r&b 13519 r&b', 'pop', 'eighties', 'power pop', 'soul pop', 'soul 13520 pop 13521 rock', 'pop', 'metal', 'ballad 13522 rock', 'album-oriented rock (aor)', 'adult contemporary', 'eighties', 'blue-eyed soul', 'pop-rock 13523 rock', 'pop', 'cover', 'pop-rock 13524 pop', 'rock', 'dance-pop', 'eighties', 'funk 13525 pop', 'r&b', 'ballad', 'soul', 'soul pop', 'electro-funk', 'electronic', 'eighties 13526 r&b', 'soul 13527 pop 13528 pop 13529 pop', 'r&b', 'eighties', 'electro-funk', 'synth-pop', 'soul pop', 'dance', 'funk', 'soul 13530 r&b', 'pop', 'video game', 'soundtrack', 'funk', 'synth-pop', 'singer-songwriter', 'eighties 13531 pop', 'rap', 'eighties', 'synth-pop', 'dance-pop 13532 rock 13533 pop', 'eighties', 'cover', 'pop-rock 13534 pop', 'latin pop', 'eighties', 'ballad 13535 pop 13536 pop', 'scandinavia', 'latin music', 'latin urban', 'latin pop', 'reggaetón', 'chile', 'en español', 'norge 13537 pop 13538 pop', 'rock', 'alternative', 'alternative rock', 'adult alternative', 'progressive rock', 'avant-pop', 'album-oriented rock (aor)', 'art pop', 'art rock', 'yacht rock', 'psychedelic rock', 'psychedelic', 'soft rock', 'singer-songwriter', 'adult contemporary', 'dream pop', 'synth-pop', 'easy listening', 'eighties', 'pop-rock 13539 rock', 'pop 13540 rock', 'pop', 'adult contemporary', 'soft rock', 'pop-rock', 'piano', 'eighties', 'ballad 13541 rock', 'scandinavia', 'svensk rock', 'sverige', 'glam metal', 'glam rock', 'metal 13542 pop 13543 rock', 'hard rock 13544 pop 13545 pop', 'trip-hop', 'electronic', 'dance', 'dance-pop 13546 rock', 'heartland rock', 'pop-rock', 'singer-songwriter', 'eighties 13547 rock 13548 rock', 'ireland 13549 rap 13550 rock 13551 pop', 'eighties', 'uk', 'dance-pop', 'synth-pop 13552 pop 13553 pop 13554 pop', 'electro-soul', 'uk', 'eighties', 'dance-pop', 'dance', 'memes 13555 pop 13556 rock 13557 pop', 'eighties', 'soft rock', 'ballad', 'singer-songwriter', 'soundtrack 13558 pop 13559 rock', 'pop', 'electronic rock', 'pop-rock', 'avant-pop', 'avant garde', 'uk', 'eighties', 'new wave', 'synth-pop', 'electronica 13560 pop 13561 pop 13562 pop', 'girl group 13563 rock 13564 pop', 'dark wave', 'post-punk', 'eighties', 'uk', 'synth-pop 13565 r&b', 'pop', 'eighties', 'soul', 'soul pop 13566 pop', 'r&b', 'rock', 'blue-eyed soul', 'ballad', 'soul pop', 'adult contemporary', 'soundtrack', 'eighties', 'singer-songwriter', 'new wave', 'soul', 'synth-pop', 'funk 13567 pop 13568 rock', 'pop-rock 13569 rock 13570 pop', 'r&b', 'soul', 'soul pop', 'new jack swing 13571 r&b', 'pop', 'singer-songwriter', 'producer', 'eighties', 'funk rock', 'funk', 'soul pop', 'soul 13572 pop 13573 rock 13574 pop', 'r&b', 'dance-pop 13575 pop 13576 pop 13577 pop 13578 rock 13579 pop', 'r&b', 'eighties', 'soul pop', 'soul 13580 rap 13581 pop', 'soundtrack', 'singer-songwriter', 'eighties 13582 pop 13583 pop', 'uk', 'hi-nrg', 'eighties 13584 pop 13585 pop', 'r&b', 'eighties 13586 pop 13587 rock 13588 pop', 'rock', 'eighties', 'alternative rock', 'post-punk 13589 pop 13590 r&b', 'pop', 'world music', 'eighties', 'adult contemporary', 'ballad', 'soul', 'gospel', 'soul pop 13591 rock', 'piano', 'uk', 'singer-songwriter', 'eighties 13592 rock', 'heartland rock 13593 pop 13594 pop', 'r&b', 'rock', 'funk', 'dance 13595 pop', 'r&b', 'eighties', 'motown', 'singer-songwriter', 'soul', 'soul pop 13596 pop 13597 pop 13598 r&b', 'soul 13599 r&b', 'adult contemporary', 'uk', 'eighties', 'synth-pop', 'funk', 'dance-pop', 'disco 13600 rock 13601 pop', 'eighties 13602 rock', 'eighties', 'uk', 'british rock', 'heavy metal', 'hard rock 13603 pop 13604 pop', 'australia', 'eighties', 'new wave', 'pop-rock 13605 pop 13606 pop 13607 r&b', 'pop', 'orchestral', 'soundtrack', 'soul', 'soul pop', 'soul jazz', 'ballad', 'sixties', 'jazz 13608 pop 13609 pop 13610 r&b', 'funk 13611 pop 13612 pop 13613 pop 13614 pop 13615 r&b', 'pop', 'eighties', 'adult contemporary', 'ballad', 'soul', 'soul pop 13616 pop 13617 rock', 'heartland rock', 'pop-rock', 'singer-songwriter', 'eighties 13618 pop 13619 r&b', 'eighties', 'soul', 'soul pop 13620 pop 13621 pop 13622 rap 13623 pop 13624 pop 13625 rock', 'r&b 13626 rap 13627 rock', 'pop-rock', 'funk rock', 'funk', 'british rock', 'uk', 'new wave', 'psychedelic rock', 'indie rock', 'alternative rock 13628 r&b 13629 pop', 'ballad', 'latin pop', 'eighties 13630 pop', 'new wave', 'synth-pop 13631 pop 13632 rock 13633 r&b', 'pop', 'singer-songwriter', 'eighties', 'yacht rock', 'ballad', 'soul', 'soul pop 13634 r&b', 'cover 13635 pop', 'blue-eyed soul', 'adult contemporary', 'eighties', 'synth-pop', 'new wave', 'britpop', 'uk 13636 rock 13637 pop 13638 rock', 'uk', 'eighties 13639 pop 13640 pop 13641 rock 13642 pop', 'eighties', 'uk', 'hi-nrg', 'dance-pop', 'disco', 'cover', 'synth-pop', 'dance 13643 pop 13644 pop 13645 rap 13646 pop 13647 pop', 'en español 13648 pop 13649 rock', 'australia', 'eighties', 'alternative rock', 'new wave', 'pop-rock 13650 country', 'rock 13651 rock 13652 rock', 'glam metal', 'metal', 'glam rock', 'deutschland', 'hard rock 13653 pop 13654 pop', 'rock', 'alternative', 'alternative rock', 'adult alternative', 'progressive rock', 'avant-pop', 'power pop', 'easy listening', 'album-oriented rock (aor)', 'soft rock', 'uk', 'glam rock', 'yacht rock', 'art rock', 'art pop', 'pop-rock', 'eighties', 'psychedelic rock', 'psychedelic 13655 pop 13656 pop', 'eighties', 'adult contemporary', 'pop-rock 13657 r&b', 'pop', 'singer-songwriter', 'soundtrack', 'eighties', 'new jack swing 13658 pop 13659 rock', 'dream pop', 'neo-psychedelia 13660 rock 13661 pop', 'latin freestyle edm 13662 pop', 'r&b', 'rock', 'soft rock', 'soundtrack', 'ballad', 'blue-eyed soul', 'soul pop', 'adult contemporary', 'eighties', 'singer-songwriter', 'new wave', 'soul', 'synth-pop', 'funk 13663 rock', 'pop 13664 r&b', 'pop', 'eighties', 'uk', 'blue-eyed soul', 'synth-pop', 'disco 13665 pop 13666 pop 13667 r&b 13668 rock 13669 pop 13670 pop 13671 pop', 'rock', 'uk', 'jazz', 'reggae', 'eighties 13672 pop', 'synth-pop', 'downtempo', 'electronic', 'new wave 13673 pop 13674 pop 13675 rap', 'electronic', 'eighties', 'hip-hop 13676 rock', 'album-oriented rock (aor)', 'eighties', 'glam metal', 'metal', 'hard rock 13677 pop 13678 rock', 'pop-rock', 'album-oriented rock (aor)', 'eighties', 'glam rock', 'glam metal', 'hard rock 13679 pop 13680 r&b', 'synth-pop', 'funk 13681 pop 13682 pop', 'r&b', 'rock 13683 rock', 'pop', 'yacht rock', 'soft rock', 'pop-rock', 'eighties 13684 rap 13685 rock', 'pop 13686 pop 13687 r&b', 'pop', 'rap', 'pop rap', 'soundtrack', 'hip-hop 13688 pop 13689 pop', 'rock', 'singer-songwriter', 'eighties', 'experimental', 'pop-rock', 'hard rock', 'heavy metal 13690 pop', 'uk 13691 pop', 'r&b', 'singer-songwriter', 'eighties 13692 pop', 'eighties', 'australia', 'dance-pop 13693 pop', 'r&b', 'rock', 'motown', 'soul', 'soul pop', 'singer-songwriter', 'eighties 13694 pop 13695 rock', 'dance rock 13696 rock', 'alternative rock', 'folk rock 13697 pop 13698 rock 13699 pop 13700 r&b', 'rock', 'blues rock', 'blues', 'jamaica', 'reggae 13701 pop 13702 rock 13703 pop', 'r&b', 'uk', 'uk r&b', 'soul jazz', 'singer-songwriter', 'funk', 'eighties', 'soul pop', 'soul', 'jazz 13704 r&b', 'new jack swing 13705 r&b', 'pop', 'new jack swing', 'soul', 'soul pop 13706 rock 13707 rock 13708 rap', 'eighties', 'hip-hop 13709 pop 13710 pop 13711 pop', 'rock', 'pop-rock', 'parody', 'comedy 13712 pop 13713 r&b', 'adult contemporary', 'producer', 'singer-songwriter', 'ballad', 'soul pop', 'eighties', 'soul 13714 pop 13715 pop 13716 pop 13717 pop', 'new wave', 'synth-pop', 'uk', 'eighties', 'electronica', 'avant-pop', 'avant garde 13718 pop 13719 r&b', 'pop', 'bay area', 'west coast', 'new jack swing', 'soul', 'soul pop 13720 rock', 'funk rock', 'adult contemporary', 'synth rock', 'soft rock', 'ballad', 'eighties 13721 pop', 'dance', 'eighties', 'latin pop 13722 rock', 'funk', 'glam rock', 'singer-songwriter', 'eighties 13723 rock', 'hard rock', 'deutschsprachiger rock 13724 rock', 'r&b', 'acoustic', 'adult alternative', 'adult contemporary', 'singer-songwriter', 'eighties', 'folk', 'folk rock 13725 pop 13726 pop', 'blues', 'pop-rock 13727 pop 13728 pop 13729 rap', 'gangsta rap', 'west coast 13730 pop 13731 pop', 'latin freestyle edm 13732 pop', 'rock', 'dance rock', 'eighties', 'uk', 'pop-rock', 'synth-pop 13733 pop 13734 pop', 'dance-pop', 'latin freestyle edm 13735 pop 13736 pop', 'r&b 13737 pop 13738 r&b', 'pop', 'soul', 'soul pop 13739 pop', 'house 13740 rock', 'heavy metal', 'album-oriented rock (aor)', 'eighties', 'glam metal', 'pop-rock', 'ballad', 'hard rock 13741 pop 13742 r&b 13743 rock', 'hard rock 13744 pop', 'eighties', 'bubblegum pop 13745 pop 13746 pop', 'r&b', 'eighties', 'synth-pop', 'dance', 'dance-pop 13747 pop 13748 rock 13749 pop 13750 pop 13751 pop', 'r&b', 'eighties', 'soul pop', 'new jack swing 13752 pop', 'r&b', 'rock', 'eighties', 'singer-songwriter', 'new wave', 'soul', 'synth-pop', 'funk 13753 pop 13754 pop 13755 rock', 'pop', 'new wave', 'pop-rock 13756 rock', 'power pop', 'pop-rock', 'eighties', 'australia', 'new zealand 13757 pop 13758 pop 13759 pop 13760 rock 13761 rap', 'uk rap', 'uk 13762 pop 13763 pop', 'eighties', 'synth-pop', 'blue-eyed soul', 'uk', 'disco', 'soul 13764 rock 13765 pop', 'synth-pop', 'freestyle', 'new wave', 'dance-pop', 'alternative dance', 'alternative pop 13766 pop 13767 pop 13768 r&b', 'pop', 'funk', 'synth-pop', 'singer-songwriter', 'eighties 13769 pop 13770 pop 13771 r&b 13772 pop 13773 rap', 'r&b', 'pop', 'dance-pop', 'new jack swing 13774 pop 13775 rap 13776 pop 13777 pop 13778 pop', 'rock 13779 rap', 'halloween 13780 rap 13781 pop', 'eighties 13782 pop', 'dance', 'synth-pop', 'electronic 13783 pop 13784 pop 13785 pop 13786 pop 13787 rock 13788 rock', 'uk 13789 r&b', 'eighties', 'singer-songwriter', 'new jack swing 13790 pop', 'christian', 'adult contemporary 13791 rock', 'eighties', 'glam metal', 'hard rock 13792 rock 13793 rock', 'adult alternative', 'adult contemporary', 'album-oriented rock (aor)', 'blues rock', 'pop-rock', 'ballad 13794 rap', 'freestyle 13795 r&b 13796 pop 13797 pop 13798 pop 13799 pop 13800 pop 13801 pop 13802 pop 13803 rap', 'dance', 'boom bap', 'east coast', 'new york', 'hip-hop', 'eighties 13804 pop 13805 r&b 13806 pop', 'dance-pop', 'australia', 'eighties', 'cover 13807 pop 13808 pop', 'cover 13809 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 13810 rock', 'glam metal', 'glam rock 13811 pop 13812 rock', 'synth-pop', 'electronic 13813 pop 13814 pop 13815 rock', 'alternative rock', 'folk rock 13816 pop 13817 r&b', 'pop', 'synth-pop', 'eighties', 'soul', 'ballad 13818 pop', 'electronic', 'downtempo', 'new wave', 'synth-pop 13819 pop 13820 pop', 'synth-pop', 'eighties', 'adult contemporary 13821 pop 13822 pop 13823 pop', 'synth-pop', 'uk', 'eighties 13824 pop 13825 rock', 'pop-rock', 'soft rock', 'new wave', 'eighties', 'uk 13826 pop 13827 rock', 'metal', 'glam rock', 'glam metal 13828 rap 13829 rock', 'eighties 13830 rock', 'adult contemporary', 'synth rock', 'pop-rock', 'soft rock', 'eighties 13831 r&b', 'singer-songwriter', 'smooth jazz', 'yacht rock', 'piano', 'easy listening', 'ballad', 'soul pop', 'soul jazz', 'adult contemporary', 'eighties', 'soul 13832 pop 13833 rap', 'eighties 13834 pop 13835 r&b', 'pop', 'eighties', 'soul', 'soul pop 13836 pop', 'latin freestyle edm 13837 rock', 'alternative rock', 'adult alternative', 'ireland 13838 pop 13839 pop 13840 rock 13841 rap', 'italian rap', 'italy 13842 pop 13843 pop 13844 pop 13845 r&b 13846 rock', 'glam metal 13847 r&b', 'rock', 'pop', 'yacht rock', 'eighties', 'a cappella', 'adult contemporary', 'ballad', 'soft rock', 'soul jazz', 'jazz', 'piano', 'jazz fusion', 'soul pop', 'blue-eyed soul', 'singer-songwriter', 'soul 13848 pop 13849 pop', 'uk', 'eighties', 'dance-pop', 'synth-pop', 'freestyle 13850 r&b 13851 pop 13852 pop 13853 pop 13854 pop', 'synth-pop', 'new wave 13855 pop 13856 pop', 'r&b', 'soul', 'soul pop', 'new jack swing 13857 pop', 'rock', 'uk', 'seventies', 'chamber music', 'singer-songwriter', 'ballad 13858 rap', 'house', 'deep house', 'bounce 13859 rap 13860 pop', 'rock', 'alternative dance', 'new wave', 'experimental rock', 'alternative', 'eighties', 'british rock', 'uk', 'art pop 13861 pop', 'nigeria', 'afrobeats 13862 pop 13863 rap', 'battle rap 13864 rock', 'heavy metal', 'metal', 'eighties', 'glam metal', 'hard rock 13865 pop 13866 pop 13867 pop', 'r&b', 'eighties', 'new jack swing', 'dance-pop 13868 rock', 'pop', 'soul 13869 pop 13870 r&b 13871 rock', 'glam rock', 'glam metal 13872 rock 13873 rock 13874 r&b 13875 pop 13876 rap 13877 pop', 'reggae 13878 pop 13879 pop 13880 pop', 'eighties 13881 rock 13882 pop 13883 pop 13884 rock 13885 pop', 'soundtrack', 'cover 13886 pop 13887 pop 13888 pop 13889 r&b', 'pop', 'eighties', 'singer-songwriter', 'electro-funk 13890 pop 13891 pop', 'dance-pop', 'dance', 'synth-pop 13892 pop 13893 pop 13894 pop', 'latin freestyle edm 13895 r&b', 'new jack swing 13896 rock', 'uk', 'eighties 13897 rock 13898 r&b', 'pop', 'cover', 'soul', 'soul pop 13899 pop 13900 pop', 'eighties', 'bubblegum pop 13901 pop 13902 rock', 'hard rock', 'glam metal', 'eighties 13903 pop 13904 pop', 'rock', 'college rock', 'folk rock', 'alternative rock', 'adult contemporary', 'adult alternative', 'eighties', 'pop-rock 13905 pop 13906 pop 13907 pop', 'r&b', 'rap', 'eighties 13908 rock 13909 rock', 'pop', 'rap', 'eighties', 'hip-hop', 'rap rock 13910 r&b', 'new jack swing 13911 pop 13912 pop', 'new wave', 'eighties', 'dance-pop', 'synth-pop 13913 pop 13914 pop', 'australia 13915 pop', 'uk 13916 rap 13917 pop 13918 rock', 'yacht rock', 'eighties', 'pop-rock', 'adult alternative', 'adult contemporary', 'heartland rock', 'roots', 'soul pop', 'soul', 'ireland 13919 pop', 'dance-pop', 'eighties', 'uk', 'electro-pop', 'mashup', 'time lord rock (trock) 13920 pop 13921 rap 13922 pop', 'art pop', 'art rock', 'pop-rock', 'electronic rock', 'synth-pop', 'new wave 13923 pop 13924 pop 13925 pop', 'industrial', 'synth-pop 13926 pop', 'rock', 'album-oriented rock (aor)', 'adult contemporary', 'ballad', 'pop-rock 13927 pop 13928 pop', 'r&b', 'soul', 'soul pop 13929 rock', 'glam metal', 'heavy metal 13930 pop 13931 r&b 13932 rock', 'heavy metal', 'soundtrack', 'eighties', 'glam metal', 'pop-rock', 'glam rock', 'hard rock 13933 pop 13934 pop', 'downtempo', 'electronic', 'new wave', 'synth-pop 13935 rock', 'glam metal', 'hard rock 13936 pop', 'eighties 13937 r&b', 'pop', 'soul', 'soul pop 13938 rock', 'synth rock', 'adult contemporary', 'soft rock', 'eighties', 'pop-rock 13939 pop 13940 rock', 'pop 13941 pop', 'synth-pop', 'new wave', 'pop-rock', 'art pop 13942 pop', 'ireland', 'eighties', 'new age', 'celtic 13943 pop 13944 pop 13945 rock', 'comedy', 'eighties', 'power pop', 'alternative rock', 'theme song 13946 pop 13947 r&b', 'soul 13948 r&b', 'pop 13949 rock 13950 pop 13951 rock', 'metal', 'glam rock', 'glam metal 13952 pop', 'r&b', 'soul', 'soul pop 13953 pop', 'eighties', 'uk', 'disco', 'dance-pop', 'synth-pop 13954 pop 13955 pop', 'house', 'electronic', 'uk', 'eighties 13956 rock', 'soft rock', 'eighties 13957 pop 13958 pop 13959 pop 13960 pop', 'dance-pop', 'latin freestyle edm 13961 pop 13962 pop 13963 rock 13964 rock', 'pop', 'eighties', 'pop-rock 13965 rap 13966 pop', 'r&b', 'eighties', 'soul', 'soul pop 13967 rock 13968 pop 13969 r&b 13970 rock', 'hard rock 13971 pop 13972 pop 13973 pop 13974 pop 13975 pop 13976 r&b 13977 pop', 'eighties', 'uk 13978 rock', 'glam rock', 'glam metal', 'hard rock 13979 pop 13980 pop 13981 pop', 'youtube', 'alternative', 'alternative pop 13982 rap', 'pop', 'electronic 13983 pop 13984 rock', 'pop', 'rap', 'rap rock', 'hip-hop', 'eighties 13985 rock 13986 rock', 'eighties 13987 rap', 'techno', 'electronica 13988 rap 13989 pop 13990 rock', 'funk rock', 'alternative metal', 'groove metal', 'alternative rock', 'heavy metal 13991 rock', 'australia', 'hard rock 13992 pop 13993 rock', 'pop', 'singer-songwriter', 'teen pop', 'eighties', 'pop-rock 13994 r&b', 'pop', 'eighties', 'funk', 'synth-pop 13995 pop', 'rock', 'new wave', 'pop-rock', 'synth-pop 13996 pop 13997 pop', 'eighties', 'uk 13998 pop 13999 rap', 'freestyle', 'covid-19', 'charity 14000 pop', 'synth-pop', 'new wave 14001 pop 14002 pop 14003 pop', 'r&b', 'new jack swing', 'dance-pop 14004 pop 14005 pop 14006 pop 14007 pop 14008 pop 14009 pop 14010 r&b', 'pop', 'eighties', 'bubblegum pop 14011 rap 14012 rock 14013 pop 14014 pop 14015 pop', 'rock', 'pop-rock', 'acoustic', 'ballad 14016 pop 14017 rock', 'ballad', 'college rock', 'soft rock', 'adult alternative', 'eighties', 'folk rock', 'pop-rock 14018 pop 14019 rock', 'glam metal', 'glam rock 14020 rock', 'alternative rock', 'power pop 14021 pop 14022 pop', 'r&b', 'soul', 'soul pop 14023 r&b', 'pop', 'eighties', 'soul pop', 'soul 14024 pop 14025 pop 14026 pop', 'soul 14027 r&b', 'eighties', 'soul 14028 pop', 'dance rock', 'uk', 'eighties 14029 pop', 'rock 14030 pop 14031 pop', 'dance-pop', 'dance', 'eighties 14032 pop 14033 pop 14034 pop', 'techno', 'electro house', 'synth-pop', 'alternative dance 14035 pop 14036 pop 14037 rock', 'heartland rock 14038 pop 14039 rock 14040 rock', 'glam metal 14041 pop', 'rock', 'new wave', 'pop-rock', 'alternative pop', 'college rock', 'alternative rock 14042 pop 14043 rock', 'pop', 'pop-rock 14044 pop', 'rock', 'r&b', 'eighties', 'adult contemporary', 'piano', 'doo-wop', 'soul pop', 'alternative rock', 'pop-rock', 'soul 14045 pop 14046 r&b', 'pop', 'eighties', 'cover', 'adult contemporary', 'blue-eyed soul', 'jazz fusion 14047 r&b', 'new jack swing 14048 rock 14049 pop 14050 pop 14051 rock', 'uk 14052 rock', 'alternative rock', 'alternative', 'post-punk', 'british rock', 'uk', 'dream pop', 'gothic rock 14053 rock', 'ballad', 'adult contemporary', 'funk rock', 'eighties 14054 pop 14055 rock', 'british rock', 'uk', 'eighties', 'protest songs', 'hard rock', 'pop-rock 14056 pop 14057 pop 14058 pop 14059 pop 14060 rock 14061 pop', 'eighties', 'pop-rock 14062 pop 14063 pop', 'latin freestyle edm 14064 pop 14065 rock', 'british rock', 'uk 14066 pop', 'eighties', 'synth-pop', 'scandinavia', 'sverige', 'scandipop 14067 pop', 'r&b', 'soul pop', 'new jack swing 14068 rock', 'glam metal', 'hard rock 14069 pop', 'new jack swing 14070 rap', 'eighties', 'hip-hop 14071 pop 14072 pop', 'funk', 'eighties', 'dance-pop', 'dance 14073 rock', 'eighties 14074 r&b', 'rap', 'eighties', 'east coast', 'hip-hop', 'soul', 'funk 14075 pop 14076 r&b', 'pop', 'new jack swing', 'soul', 'soul pop 14077 rock', 'progressive metal', 'glam metal 14078 pop 14079 r&b 14080 pop', 'latin freestyle edm 14081 pop 14082 rock', 'alternative rock', 'power pop 14083 rap', 'eighties', 'east coast', 'hip-hop 14084 rock', 'hard rock', 'heavy metal', 'glam rock 14085 rap 14086 pop 14087 pop 14088 pop', 'r&b', 'rap', 'new jack swing', 'funk 14089 pop 14090 pop 14091 pop 14092 pop 14093 rock', 'pop', 'folk', 'pop-rock', 'alternative rock', 'folk rock', 'soft rock 14094 rock 14095 pop', 'r&b 14096 r&b', 'uk', 'new jack swing', 'soul 14097 r&b', 'pop', 'jazz 14098 pop 14099 pop 14100 pop 14101 r&b 14102 pop', 'r&b', 'dance-pop', 'soul', 'soul pop 14103 pop 14104 r&b 14105 pop 14106 r&b', 'pop', 'funk 14107 pop 14108 rock', 'ireland 14109 pop', 'easy listening', 'ballad', 'eighties', 'soft rock', 'pop-rock 14110 pop', 'latin pop', 'eighties', 'ballad 14111 rock', 'pop', 'adult contemporary', 'eighties', 'ballad', 'pop-rock 14112 rock', 'soundtrack', 'glam metal', 'hard rock', 'heavy metal', 'glam rock 14113 rock', 'alternative rock', 'funk rock 14114 pop 14115 r&b', 'eighties', 'new jack swing 14116 pop', 'latin freestyle edm 14117 pop', 'boy band', 'eighties', 'bubblegum pop', 'dance-pop 14118 rock', 'pop-rock 14119 rock 14120 pop', 'en español 14121 rock 14122 pop 14123 pop 14124 pop 14125 pop 14126 pop 14127 pop', 'synth-pop 14128 pop', 'eighties 14129 pop', 'rap', 'funk', 'eighties', 'pop rap', 'hip-hop 14130 pop 14131 pop 14132 pop 14133 rock', 'heartland rock 14134 pop 14135 rock', 'norge', 'norsk 14136 rock', 'eighties', 'heavy metal', 'glam rock', 'hard rock 14137 pop 14138 rap', 'east coast 14139 pop 14140 pop 14141 rock', 'eighties', 'metal', 'glam metal', 'blues rock 14142 pop', 'rock 14143 pop 14144 rock', 'eighties', 'singer-songwriter', 'alternative rock', 'british rock', 'alternative', 'post-punk', 'uk', 'dream pop', 'gothic rock 14145 pop 14146 r&b', 'singer-songwriter', 'new jack swing 14147 rock 14148 pop 14149 pop 14150 pop 14151 rock 14152 pop 14153 rock 14154 pop 14155 pop', 'singer-songwriter', 'eighties 14156 pop 14157 pop 14158 r&b 14159 pop 14160 pop', 'r&b', 'rock', 'pop-rock', 'funk-pop', 'eighties', 'funk', 'soundtrack 14161 pop', 'rock', 'eighties', 'sverige', 'ballad 14162 pop', 'rock', 'pop-rock', 'piano', 'adult contemporary', 'blue-eyed soul', 'gospel 14163 pop', 'r&b', 'soul', 'soul pop', 'eighties', 'new jack swing 14164 pop 14165 rock 14166 pop 14167 pop 14168 rock', 'pop 14169 pop', 'r&b', 'eighties', 'dance-pop', 'new jack swing', 'dance 14170 rock 14171 rock', 'pop', 'uk', 'progressive rock', 'neo-psychedelia', 'psychedelic rock', 'politics', 'pop-rock 14172 rock 14173 rock', 'heavy metal', 'metal', 'glam metal', 'glam rock 14174 r&b', 'rock', 'pop-rock', 'cover', 'eighties 14175 pop', 'rock', 'eighties', 'dance-pop', 'pop-rock 14176 pop 14177 pop 14178 r&b', 'pop', 'eighties', 'ballad', 'power pop', 'soul', 'soul pop 14179 pop 14180 r&b 14181 pop 14182 rap 14183 rock 14184 rock', 'eighties', 'singer-songwriter', 'uk 14185 pop 14186 pop', 'eighties', 'boy band', 'dance-pop', 'synth-pop', 'pop-rock 14187 pop 14188 pop', 'ballad', 'eighties 14189 r&b', 'pop', 'eighties', 'dance-pop', 'electronic', 'dance 14190 rap', 'gangsta rap', 'trap 14191 rock', 'glam metal', 'glam rock', 'hard rock 14192 rap 14193 pop 14194 pop 14195 pop 14196 pop 14197 pop 14198 pop 14199 pop 14200 rock 14201 pop', 'eighties', 'dance', 'latin pop 14202 pop 14203 pop 14204 pop', 'synth-pop', 'pop-rock 14205 pop 14206 pop 14207 rock', 'hard rock', 'metal', 'ballad 14208 rock 14209 rock', 'eighties', 'glam metal', 'heavy metal', 'hard rock 14210 pop 14211 pop 14212 rock', 'eighties 14213 pop 14214 pop 14215 pop 14216 pop 14217 pop 14218 pop', 'latin freestyle edm 14219 rock', 'eighties', 'pop-rock', 'singer-songwriter', 'protest songs 14220 r&b', 'soul pop', 'soul 14221 pop', 'congo', 'belgië/belgique', 'eighties', 'dance', 'electro-hop', 'house', 'electro house', 'electro-pop', 'electronic 14222 r&b', 'pop 14223 pop', 'latin freestyle edm 14224 pop 14225 r&b', 'soul 14226 rock', 'pop', 'eighties', 'adult contemporary', 'pop-rock 14227 r&b 14228 rock 14229 pop 14230 pop 14231 pop 14232 pop 14233 pop', 'eighties', 'singer-songwriter', 'adult contemporary', 'soul', 'ballad', 'pop-rock 14234 pop 14235 pop 14236 pop 14237 rock', 'pop', 'singer-songwriter', 'eighties', 'synth-pop', 'pop-rock 14238 rock', 'folk rock', 'singer-songwriter', 'eighties', 'album-oriented rock (aor)', 'adult alternative', 'adult contemporary', 'alternative rock', 'ballad', 'heartland rock', 'pop-rock 14239 rock 14240 r&b', 'rap 14241 rap 14242 pop 14243 rock 14244 r&b', 'eighties', 'soul 14245 pop', 'r&b', 'eighties', 'singer-songwriter', 'dance-pop', 'dance', 'funk', 'new jack swing 14246 pop', 'ballad', 'eighties 14247 pop', 'latin freestyle edm', 'dance 14248 pop 14249 pop 14250 pop', 'latin freestyle edm 14251 pop 14252 rock', 'eighties', 'glam metal', 'hard rock', 'heavy metal', 'glam rock', 'ballad 14253 rock 14254 r&b', 'singer-songwriter', 'new jack swing 14255 r&b', 'cover', 'eighties', 'soul pop', 'funk', 'soul 14256 r&b', 'eighties', 'soul', 'new jack swing 14257 pop', 'uk 14258 r&b', 'rock', 'punk rock 14259 rock', 'ballad 14260 rap 14261 rock', 'glam metal', 'hard rock', 'heavy metal 14262 pop 14263 rock 14264 pop 14265 r&b', 'pop', 'rap', 'australia', 'hip-hop', 'indie rap', 'aussie hip-hop', 'indie 14266 pop 14267 rock', 'singer-songwriter', 'alternative rock', 'alternative', 'dream pop', 'british rock', 'post-punk', 'gothic rock', 'uk 14268 pop', 'r&b', 'soul 14269 pop 14270 rock', 'neo-psychedelia', 'psychedelic rock', 'soft rock', 'pop-rock 14271 rock', 'adult contemporary', 'synth rock', 'pop-rock', 'soft rock', 'eighties 14272 pop 14273 pop 14274 pop 14275 r&b', 'pop', 'ballad 14276 pop 14277 rock 14278 pop', 'power pop 14279 pop 14280 pop 14281 pop', 'uk', 'eighties', 'glam rock', 'synth rock', 'gothic rock', 'new wave', 'dance', 'alternative', 'alternative rock', 'blues rock', 'synth-pop 14282 rock 14283 rock', 'pop', 'pop-rock 14284 pop', 'eighties', 'adult contemporary', 'latin pop', 'ballad 14285 rap 14286 pop 14287 r&b 14288 pop 14289 pop 14290 rock', 'pop', 'pop-rock 14291 r&b', 'smooth jazz', 'adult contemporary', 'ballad', 'soul pop', 'soul 14292 rap 14293 pop 14294 rap 14295 pop 14296 rock 14297 rock', 'eighties', 'adult contemporary', 'adult alternative', 'singer-songwriter', 'alternative pop', 'alternative rock', 'pop-rock 14298 country', 'pop', 'rock', 'eighties', 'ballad', 'adult contemporary', 'blues rock', 'pop-rock 14299 rock 14300 pop', 'pop-rock', 'soft rock', 'uk', 'eighties', 'adult contemporary 14301 rap', 'american underground', 'underground hip-hop', 'cloud rap', 'hip-hop 14302 rap', 'battle rap 14303 rock', 'eighties', 'singer-songwriter', 'uk 14304 pop', 'r&b', 'eighties', 'singer-songwriter', 'dance', 'dance-pop 14305 pop 14306 pop', 'rap', 'eighties', 'east coast', 'hip-hop', 'comedy 14307 pop 14308 pop 14309 pop 14310 pop 14311 r&b 14312 r&b', 'pop', 'adult contemporary', 'ballad', 'soul pop', 'soul 14313 rock 14314 pop 14315 pop 14316 rap 14317 pop', 'rock', 'singer-songwriter', 'pop-rock', 'funk rock', 'funk 14318 pop', 'latin freestyle edm 14319 rock 14320 r&b', 'pop', 'eighties', 'funk 14321 pop 14322 rock', 'adult contemporary', 'yacht rock 14323 rock 14324 r&b', 'blue-eyed soul', 'uk r&b', 'uk', 'new jack swing', 'soul pop 14325 pop 14326 rock 14327 pop', 'unreleased', 'medley', 'cover', 'a cappella 14328 rock', 'post-grunge', 'hard rock', 'alternative rock 14329 rock 14330 rock 14331 pop', 'eighties 14332 rap 14333 rock', 'pop', 'australia', 'eighties', 'pop-rock 14334 pop 14335 rock', 'alternative rock 14336 r&b', 'pop', 'soundtrack', 'ballad', 'adult contemporary', 'easy listening', 'seventies', 'motown', 'soul', 'soul pop 14337 rock', 'adult contemporary', 'ballad', 'pop-rock 14338 pop 14339 rap 14340 r&b', 'pop', 'latin freestyle edm', 'new jack swing', 'soul pop 14341 pop 14342 pop 14343 rock', 'nineties', 'hard rock', 'glam metal 14344 pop 14345 rock 14346 pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop 14347 r&b', 'rap', 'electronic 14348 pop 14349 r&b', 'adult contemporary', 'soul pop', 'soul 14350 pop 14351 pop', 'lambada', 'brasil', 'world music', 'eighties', 'em português 14352 rock', 'heartland rock', 'singer-songwriter', 'folk rock', 'eighties 14353 pop 14354 pop 14355 rap', 'r&b', 'soul 14356 pop', 'latin freestyle edm 14357 pop 14358 rock 14359 rock 14360 pop 14361 pop', 'latin freestyle edm 14362 r&b', 'rap', 'eighties', 'new jack swing 14363 rock', 'pop', 'latin rock', 'psychedelic rock', 'neo-psychedelia', 'pop-rock 14364 rock 14365 pop', 'ballad', 'nineties', 'adult contemporary', 'soul pop', 'ireland', 'alternative', 'cover 14366 pop 14367 pop', 'nineties', 'girl group 14368 pop', 'rap', 'hip-hop', 'bay area', 'west coast 14369 pop 14370 pop 14371 pop 14372 pop', 'cover', 'uk 14373 pop 14374 rap 14375 pop', 'latin freestyle edm 14376 pop', 'rock', 'pop-rock', 'ballad 14377 pop 14378 rock', 'pop', 'eighties', 'uk', 'baroque pop', 'british rock', 'pop-rock', 'art rock', 'alternative rock', 'gothic rock', 'post-punk 14379 pop 14380 pop 14381 pop', 'pop-rock', 'house', 'synth-pop', 'electro-pop', 'electronic 14382 pop 14383 r&b', 'eighties 14384 pop', 'r&b', 'eighties', 'singer-songwriter', 'dance-pop', 'dance', 'new jack swing 14385 r&b', 'nineties', 'funk', 'hip-hop', 'new jack swing 14386 pop', 'rock', 'avant-pop', 'power pop', 'easy listening', 'album-oriented rock (aor)', 'soft rock', 'uk', 'glam rock', 'yacht rock', 'art rock', 'art pop', 'pop-rock', 'nineties', 'psychedelic rock', 'psychedelic 14387 pop 14388 pop', 'salsa', 'eighties', 'cuba', 'latin music', 'latin pop 14389 r&b 14390 pop 14391 pop 14392 pop 14393 pop', 'nineties', 'dance-pop', 'lgbtq+', 'house 14394 pop 14395 pop 14396 r&b 14397 rap 14398 r&b', 'uk', 'uk r&b', 'new jack swing', 'soul 14399 pop', 'downtempo', 'dub', 'dance-pop', 'reggae 14400 rock', 'pop', 'nineties', 'adult alternative', 'alternative dance', 'pop-rock', 'uk', 'alternative rock', 'alternative', 'dark wave', 'synth rock', 'synth-pop 14401 r&b', 'rap 14402 pop 14403 rock 14404 rap 14405 rock', 'uk', 'northern ireland 14406 rock', 'eighties', 'dark wave', 'gothic rock', 'post-punk', 'alternative rock', 'dream pop 14407 pop', 'rap', 'nineties', 'memes 14408 rock', 'pop', 'pop-rock 14409 pop 14410 pop 14411 pop 14412 r&b', 'seventies', 'soundtrack', 'soul pop', 'soul', 'funk 14413 rock', 'pop-rock', 'uk 14414 r&b', 'dance', 'new jack swing 14415 rock 14416 pop 14417 pop 14418 rap 14419 pop 14420 pop 14421 pop', 'r&b', 'nineties', 'girl group', 'new jack swing 14422 rock 14423 rap 14424 pop 14425 pop 14426 pop', 'latin freestyle edm 14427 pop', 'r&b', 'dance', 'dance-pop', 'new jack swing 14428 rap', 'pop', 'euro house', 'hip-hop', 'nineties', 'soundtrack', 'house', 'deutschland', 'dance 14429 pop', 'latin freestyle edm 14430 pop 14431 pop 14432 rap', 'en español 14433 rock', 'southern rock', 'blues rock 14434 pop 14435 pop 14436 pop 14437 pop', 'eighties 14438 pop 14439 rock', 'adult alternative', 'adult contemporary', 'jazz fusion', 'pop-rock', 'blues rock', 'americana 14440 pop', 'eighties', 'boy band', 'synth-pop', 'dance', 'dance-pop 14441 pop 14442 pop 14443 r&b', 'nineties', 'soul 14444 r&b 14445 pop 14446 rock', 'nineties', 'hard rock', 'glam rock 14447 r&b', 'pop', 'ballad', 'singer-songwriter', 'soul 14448 pop 14449 pop 14450 pop', 'r&b', 'new jack swing 14451 pop 14452 rock 14453 pop 14454 rock 14455 pop 14456 pop 14457 r&b', 'pop', 'yacht rock', 'adult contemporary', 'blue-eyed soul 14458 pop 14459 r&b', 'singer-songwriter', 'new jack swing 14460 pop 14461 rap 14462 pop 14463 pop 14464 pop 14465 pop 14466 pop 14467 rock', 'rap', 'alternative metal', 'rap rock', 'funk rock', 'funk 14468 rock 14469 rap', 'west coast 14470 pop', 'r&b', 'singer-songwriter', 'soul jazz', 'soul', 'soul pop 14471 rock', 'ireland 14472 pop 14473 pop', 'nineties', 'singer-songwriter', 'soundtrack', 'swing jazz', 'swing', 'jazz 14474 rap 14475 r&b', 'funk 14476 pop 14477 pop 14478 pop', 'eighties', 'ballad', 'latin pop 14479 pop', 'r&b', 'uk', 'reggae', 'adult contemporary', 'new jack swing', 'soul pop', 'soul 14480 rap 14481 r&b', 'rap 14482 r&b', 'pop', 'eighties', 'singer-songwriter', 'soul pop', 'soul 14483 rap 14484 r&b', 'dance 14485 r&b', 'cover', 'soul', 'soul pop 14486 rock', 'hard rock 14487 rap', 'hip-hop', 'west coast 14488 rock', 'british folk', 'folk', 'adult alternative', 'folk rock', 'alternative', 'alternative rock', 'acoustic', 'uk 14489 rock 14490 pop 14491 pop 14492 pop', 'latin freestyle edm 14493 rock 14494 pop 14495 pop', 'latin freestyle edm 14496 pop 14497 rock 14498 rap', 'west coast', 'hip-hop', 'hardcore hip-hop', 'gangsta rap', 'g-funk 14499 pop 14500 rap', 'posse cut 14501 pop', 'latin freestyle edm 14502 r&b', 'new jack swing', 'soul pop', 'soul 14503 rock', 'pop-rock', 'art rock', 'industrial rock', 'industrial metal', 'industrial', 'experimental rock', 'experimental', 'alternative', 'alternative rock', 'groove metal', 'nu-metal', 'alternative metal', 'metal 14504 rap 14505 pop 14506 pop', 'nineties 14507 r&b', 'rock', 'soundtrack', 'funk 14508 pop', 'r&b', 'soul', 'soul pop 14509 rock 14510 pop 14511 r&b', 'pop', 'dance-pop', 'dance', 'electro house', 'house', 'nu disco', 'italy', 'soul pop', 'soul 14512 r&b', 'pop', 'adult contemporary', 'easy listening', 'ballad', 'soul', 'soul pop 14513 pop 14514 r&b', 'pop', 'dance', 'soul pop', 'soul', 'funk-pop', 'funk 14515 rock', 'pop', 'eighties 14516 pop 14517 rock', 'pop', 'dark wave', 'alternative', 'british rock', 'uk', 'alternative rock', 'synth rock', 'synth-pop 14518 pop 14519 pop', 'pop-rock 14520 rock', 'glam metal', 'metal 14521 pop 14522 pop 14523 r&b', 'nineties', 'new jack swing 14524 rock', 'blue-eyed soul', 'singer-songwriter', 'live', 'soft rock', 'pop-rock 14525 pop 14526 rock', 'hard rock', 'metal 14527 rock', 'gothic rock', 'alternative rock 14528 pop', 'latin freestyle edm 14529 r&b', 'new jack swing 14530 pop', 'traditional', 'cover', 'soul', 'ballad', 'pop-rock 14531 pop', 'adult contemporary', 'synth-pop 14532 pop', 'sixties', 'adult contemporary', 'ballad', 'blue-eyed soul', 'soul', 'baroque pop 14533 pop', 'r&b', 'new jack swing', 'girl group 14534 pop 14535 pop', 'cover', 'funk', 'dance', 'eighties 14536 pop 14537 rock', 'pop', 'nineties', 'singer-songwriter 14538 r&b', 'new jack swing', 'soul pop', 'soul 14539 pop', 'synth-pop', 'new wave 14540 rap 14541 pop', 'latin freestyle edm 14542 pop 14543 pop 14544 rock 14545 rap', 'memes', 'nineties 14546 pop 14547 rock 14548 rock', 'uk 14549 pop', 'house', 'synth-pop', 'techno 14550 rock', 'metal', 'glam metal 14551 pop 14552 rock', 'r&b', 'pop', 'pop-rock', 'eighties', 'singer-songwriter', 'hard rock', 'funk rock 14553 r&b', 'pop', 'singer-songwriter', 'ballad', 'soul 14554 pop', 'nineties', 'soundtrack', 'psychedelic', 'funk', 'disco', 'dance', 'dance-pop 14555 r&b', 'pop', 'rock', 'soul', 'soul pop', 'cover', 'ska', 'reggae 14556 pop 14557 rock 14558 country', 'pop 14559 rap', 'pop', 'r&b', 'synth-pop', 'art pop', 'alternative pop', 'alternative r&b', 'soul 14560 pop', 'uk', 'nineties', 'dance-pop', 'synth-pop 14561 r&b', 'soul pop', 'soul jazz', 'soul 14562 rap 14563 rap', 'east coast', 'hip-hop 14564 pop', 'soul 14565 pop 14566 pop 14567 pop 14568 pop', 'sixties', 'adult contemporary', 'ballad', 'blue-eyed soul', 'soul', 'baroque pop 14569 rock 14570 rock 14571 pop 14572 pop 14573 pop', 'remix', 'downtempo', 'trip-hop 14574 pop 14575 pop 14576 pop 14577 pop 14578 pop', 'r&b', 'nineties', 'singer-songwriter', 'dance', 'soul pop', 'new jack swing 14579 pop 14580 rock 14581 pop 14582 r&b', 'rap 14583 pop', 'r&b', 'nineties', 'new jack swing', 'soul pop', 'soul 14584 pop 14585 rock 14586 r&b', 'motown', 'soul pop', 'new jack swing 14587 pop', 'electronic', 'dance-pop', 'synth-pop 14588 rock', 'blues rock 14589 pop 14590 r&b', 'pop', 'funk-pop', 'nineties', 'piano', 'soundtrack', 'uk', 'lgbtq+', 'singer-songwriter', 'funk 14591 rap 14592 pop', 'dance-pop 14593 pop 14594 pop 14595 rock', 'cover', 'blues rock', 'blues 14596 pop 14597 pop', 'r&b', 'soul', 'soul pop', 'new jack swing 14598 pop 14599 r&b', 'rock', 'soundtrack 14600 pop 14601 rock 14602 r&b', 'nineties', 'soul 14603 pop 14604 pop 14605 rap', 'christmas rap 14606 rock 14607 pop 14608 pop 14609 pop 14610 pop 14611 pop 14612 rock', 'rap rock', 'funk rock', 'alternative metal', 'alternative rock 14613 pop', 'nineties', 'trip-hop 14614 pop', 'cover 14615 pop', 'rap', 'nineties', 'house', 'dance-pop', 'dance 14616 pop 14617 pop', 'adult contemporary', 'synth-pop 14618 pop 14619 pop', 'r&b', 'eighties', 'new jack swing 14620 rock', 'pop', 'electronic rock', 'electronic', 'dub', 'ragga', 'psychedelic', 'indie', 'psychedelic rock', 'indie rock 14621 rap', 'bay area', 'g-funk', 'west coast 14622 pop 14623 pop', 'electro-pop', 'dance-pop', 'pop-rock', 'adult contemporary', 'baroque pop', 'dark wave', 'alternative dance', 'electro', 'dance', 'alternative', 'uk', 'synth-pop 14624 pop', 'nineties', 'cover 14625 pop', 'piano rock 14626 rock 14627 r&b', 'pop', 'new jack swing', 'soul', 'soul pop 14628 pop 14629 rap 14630 rock 14631 r&b', 'nineties', 'soul 14632 pop 14633 rock', 'soft rock', 'eighties', 'dream pop', 'album-oriented rock (aor)', 'blues', 'singer-songwriter', 'adult alternative', 'pop-rock', 'rockabilly', 'adult contemporary', 'soundtrack', 'ballad 14634 pop 14635 rap 14636 rock', 'australia 14637 pop', 'r&b', 'new jack swing 14638 pop', 'rock 14639 pop 14640 pop 14641 pop 14642 pop 14643 r&b', 'ballad', 'new jack swing 14644 pop 14645 rap', 'battle rap 14646 pop 14647 rap 14648 rap 14649 pop 14650 rock', 'adult alternative', 'singer-songwriter', 'pop-rock', 'folk rock', 'folk 14651 pop', 'r&b', 'power pop', 'ballad', 'soul', 'soul pop 14652 pop', 'r&b', 'soul', 'soul pop 14653 pop 14654 r&b 14655 pop 14656 pop 14657 rap 14658 rock 14659 pop 14660 pop 14661 pop 14662 pop', 'dance', 'house 14663 r&b', 'rap', 'pop rap', 'new jack swing', 'hip-hop 14664 r&b', 'rap', 'new jack swing 14665 rap', 'r&b', 'poetry', 'soul 14666 r&b', 'pop', 'singer-songwriter', 'dance-pop', 'new jack swing 14667 rock 14668 r&b', 'pop', 'nineties 14669 pop 14670 r&b', 'pop', 'new jack swing', 'electro-funk', 'dance', 'dance-pop', 'soul pop 14671 r&b', 'rap 14672 rap', 'list 14673 rock', 'pop', 'singer-songwriter', 'synth-pop', 'eighties', 'indie pop', 'british rock', 'uk', 'new wave 14674 pop 14675 pop', 'latin pop', 'gospel', 'ballad 14676 rock', 'synth rock', 'adult contemporary', 'ballad', 'pop-rock', 'soft rock 14677 pop 14678 pop 14679 pop', 'rock', 'uk', 'eighties', 'funk', 'dance rock', 'new wave', 'power pop 14680 pop', 'nineties 14681 pop 14682 pop', 'uk', 'gaming', 'soundtrack 14683 pop 14684 rock', 'hard rock 14685 rap', 'en español 14686 pop', 'nineties', 'electronic', 'dance', 'dance-pop', 'house', 'uk 14687 pop 14688 pop 14689 pop', 'pop-rock 14690 rock 14691 pop', 'synth-pop', 'electro-pop 14692 pop 14693 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 14694 pop', 'nineties', 'uk', 'dance-pop 14695 rap', 'battle rap 14696 rock', 'hard rock', 'electric blues', 'blues rock', 'blues 14697 pop', 'electronic', 'dance-pop', 'synth-pop 14698 pop', 'singer-songwriter 14699 r&b', 'soul 14700 pop 14701 rap', 'r&b', 'new jack swing 14702 pop', 'r&b', 'soul 14703 r&b', 'soul pop', 'bubblegum pop', 'soul', 'new jack swing 14704 r&b', 'pop', 'rap', 'hip-hop 14705 pop', 'nineties', 'gospel', 'electro house', 'disco', 'dance-pop', 'dance', 'house 14706 pop 14707 pop', 'dance-pop', 'dance', 'cover 14708 pop 14709 pop', 'soundtrack', 'musicals 14710 pop 14711 r&b', 'live 14712 rap 14713 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 14714 pop', 'rock', 'nineties', 'australia', 'pop-rock 14715 pop 14716 pop 14717 rock 14718 rock 14719 pop 14720 pop 14721 rock', 'folk rock', 'celtic', 'british rock', 'nineties', 'uk 14722 pop 14723 pop 14724 rock 14725 rap 14726 pop 14727 rock', 'blues rock', 'ballad', 'acoustic 14728 rock', 'alternative', 'alternative dance', 'uk', 'piano', 'british rock', 'madchester', 'indie', 'indie rock 14729 pop 14730 rock', 'blues rock', 'glam metal 14731 rock', 'ballad', 'progressive rock', 'progressive metal 14732 rock', 'nineties', 'soft rock', 'easy listening', 'acoustic', 'adult alternative', 'adult contemporary', 'ballad', 'pop-rock 14733 r&b 14734 pop 14735 r&b', 'new jack swing 14736 rap', 'new jack swing 14737 rock', 'pop', 'uk', 'reggae rock', 'cover', 'adult alternative', 'adult contemporary', 'ska', 'reggae', 'pop-rock 14738 pop 14739 pop 14740 pop 14741 rap 14742 rock', 'soft rock', 'adult alternative', 'ballad', 'singer-songwriter', 'piano', 'pop country', 'adult contemporary', 'pop-rock 14743 rap 14744 r&b', 'pop', 'singer-songwriter', 'ballad', 'soul 14745 rock', 'symphonic rock', 'folk rock', 'orchestral', 'pop-rock', 'nineties', 'adult alternative', 'adult contemporary', 'alternative rock 14746 rock 14747 pop 14748 pop', 'rock 14749 pop 14750 pop 14751 pop 14752 pop', 'r&b', 'adult contemporary', 'ballad', 'soul pop', 'soul 14753 rap', 'nineties', 'east coast', 'hardcore hip-hop 14754 pop', 'r&b', 'nineties', 'soul pop', 'soul 14755 pop', 'rock', 'alternative pop', 'alternative dance', 'alternative rock', 'uk', 'soundtrack', 'electronic rock', 'electronic 14756 rap 14757 r&b', 'rap', 'nineties', 'new jack swing 14758 rock', 'alternative dance', 'synth-pop', 'alternative rock', 'alternative', 'electronic rock', 'electronic 14759 pop', 'electronic', 'house 14760 r&b 14761 pop 14762 pop', 'latin pop 14763 rock 14764 rock', 'glam metal 14765 pop 14766 pop 14767 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 14768 r&b', 'pop rap', 'hip-hop', 'new jack swing 14769 pop 14770 r&b 14771 pop 14772 pop 14773 pop 14774 pop', 'adult contemporary 14775 pop 14776 rock', 'hard rock 14777 pop 14778 pop 14779 pop 14780 pop', 'nineties', 'dance rock', 'dance', 'dance-pop', 'house', 'electronic', 'uk 14781 pop 14782 pop 14783 rock 14784 r&b 14785 pop', 'latin freestyle edm 14786 rap 14787 r&b', 'new jack swing 14788 rap 14789 rap', 'west coast 14790 pop 14791 pop 14792 pop 14793 pop 14794 pop 14795 pop 14796 pop 14797 pop 14798 pop 14799 pop 14800 rock', 'deutschland', 'eighties', 'hard rock', 'pop-rock', 'ballad', 'deutschsprachiger rock 14801 pop 14802 r&b', 'pop', 'rock', 'easy listening', 'soft rock', 'funk rock', 'ballad', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'soul pop', 'soul 14803 pop', 'comedy', 'tv 14804 pop 14805 pop', 'latin pop 14806 rap', 'battle rap 14807 pop 14808 pop 14809 pop 14810 pop 14811 pop', 'r&b', 'new jack swing 14812 r&b', 'rap', 'nineties 14813 r&b 14814 pop 14815 pop', 'underground hip-hop', 'indie pop', 'alternative pop 14816 r&b', 'soul 14817 r&b', 'pop', 'rock', 'funk-pop', 'uk r&b', 'nineties', 'singer-songwriter', 'adult contemporary', 'easy listening', 'dance-pop', 'uk', 'adult alternative', 'funk', 'electro-funk', 'alternative r&b', 'soul pop', 'soul', 'dance', 'electronic rock', 'pop-rock 14818 rock', 'cover', 'blues rock', 'blues 14819 pop 14820 pop 14821 rock', 'album-oriented rock (aor) 14822 pop 14823 pop 14824 r&b', 'pop', 'nineties', 'dance-pop', 'dance 14825 r&b', 'soul 14826 rock', 'soft rock', 'soundtrack', 'adult contemporary', 'ballad 14827 rock 14828 pop 14829 rock', 'heartland rock 14830 rap', 'dance', 'new jack swing 14831 pop 14832 rock', 'glam metal 14833 pop 14834 pop', 'motown', 'uk 14835 pop 14836 pop 14837 pop 14838 rap 14839 pop 14840 pop 14841 rock', 'heavy metal', 'hard rock 14842 r&b', 'pop', 'cover', 'jazz', 'soul jazz', 'soul pop', 'soul 14843 rap 14844 pop', 'latin freestyle edm 14845 pop 14846 pop 14847 rap', 'pop', 'dance', 'dance-pop 14848 pop 14849 rap', 'new jack swing', 'house 14850 country', 'r&b', 'blues rock 14851 rock 14852 rap', 'hip-hop', 'west coast 14853 rock', 'alternative rock', 'alternative', 'indie pop', 'uk', 'indie rock', 'eighties', 'soundtrack 14854 rap', 'trap 14855 pop 14856 r&b', 'pop 14857 pop', 'r&b', 'soul', 'soul pop', 'new jack swing 14858 rock', 'album-oriented rock (aor)', 'adult alternative', 'adult contemporary', 'alternative rock', 'pop-rock 14859 rock 14860 rock 14861 rock 14862 rock', 'soft rock', 'alternative rock', 'adult alternative', 'adult contemporary', 'pop-rock 14863 pop 14864 rap', 'pop', 'русский поп (russian pop)', 'россия (russia)', 'electronic', 'dance', 'estonia 14865 pop 14866 pop 14867 r&b 14868 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 14869 pop 14870 r&b', 'dance', 'new jack swing 14871 r&b', 'pop', 'ballad', 'adult contemporary 14872 rap', 'hip-hop 14873 pop', 'synth-pop 14874 pop 14875 pop', 'latin freestyle edm 14876 rock 14877 rap', 'uk', 'uk rap', 'drill', 'uk drill 14878 r&b', 'new jack swing 14879 rap 14880 pop', 'neo-psychedelia', 'art pop', 'alternative dance', 'alternative pop', 'alternative', 'uk 14881 rap', 'west coast 14882 pop 14883 pop 14884 pop 14885 pop', 'dance-pop 14886 pop 14887 rock', 'nineties', 'heavy metal', 'metal 14888 rock 14889 rock', 'synth-pop', 'electronic rock', 'electronic 14890 pop 14891 rap', 'west coast', 'g-funk 14892 pop', 'r&b', 'rap', 'new jack swing 14893 pop 14894 r&b', 'pop', 'nineties', 'singer-songwriter 14895 pop 14896 rock', 'dream pop', 'indie 14897 rap', 'uk rap', 'uk 14898 rap 14899 pop 14900 pop 14901 rap', 'east coast 14902 rock', 'pop', 'pop-rock 14903 r&b', 'house', 'dance 14904 r&b 14905 pop', 'r&b', 'jazz-funk', 'soul', 'soul pop', 'jazz', 'funk 14906 pop', 'jazz fusion', 'nineties', 'jazz', 'soft rock 14907 rock 14908 rap', 'g-funk 14909 pop', 'christian pop', 'christian 14910 pop 14911 rock 14912 r&b', 'rap', 'new jack swing 14913 pop 14914 pop', 'edm', 'dance', 'nineties', 'house', 'eurodance', 'italy 14915 rock 14916 pop 14917 pop', 'rock', 'nineties', 'pop-rock', 'ballad', 'hard rock 14918 r&b', 'a cappella', 'soul 14919 rock', 'alternative rock', 'alternative dance', 'indie rock', 'alternative pop', 'house 14920 rap 14921 pop 14922 pop', 'r&b', 'dance', 'remix 14923 pop 14924 pop', 'indie', 'indie rock', 'electronic rock', 'electronic 14925 pop', 'funk', 'nineties', 'uk 14926 rock', 'electronic', 'indie', 'indie rock', 'electronic rock 14927 pop 14928 pop 14929 pop', 'latin freestyle edm 14930 pop', 'dance-pop', 'house', 'dance 14931 rock 14932 rap', 'conscious hip-hop', 'boom bap', 'hardcore hip-hop', 'gangsta rap 14933 rock', 'folk 14934 rock', 'album-oriented rock (aor) 14935 pop 14936 pop', 'soul jazz', 'soul pop', 'soul', 'cover 14937 pop 14938 rock 14939 rap 14940 pop', 'latin pop 14941 rap 14942 pop 14943 pop 14944 rap', 'hip-hop', 'alternative 14945 rap', 'hardcore hip-hop', 'east coast', 'politics 14946 pop 14947 r&b 14948 pop', 'uk 14949 rock', 'australia', 'alternative rock 14950 pop', 'pop-rock 14951 rock 14952 pop 14953 pop', 'r&b', 'new jack swing', 'soul', 'soul pop 14954 pop', 'patois', 'uk', 'jamaica', 'dancehall 14955 rock', 'pop', 'sverige 14956 pop 14957 pop 14958 rock', 'pop 14959 pop 14960 pop 14961 pop 14962 pop 14963 pop 14964 r&b', 'pop', 'adult contemporary 14965 rock 14966 rap 14967 rock 14968 rap 14969 r&b', 'pop', 'nineties', 'dance 14970 pop 14971 pop 14972 r&b', 'pop', 'new jack swing', 'soul pop 14973 rap 14974 rap 14975 rock', 'glam rock', 'eighties', 'piano', 'hard rock', 'ballad', 'glam metal 14976 rock', 'alternative rock', 'ireland 14977 rock', 'ballad 14978 pop 14979 r&b', 'soul 14980 r&b 14981 r&b', 'pop', 'singer-songwriter 14982 rap', 'west coast', 'bay area', 'hip-hop 14983 pop 14984 rock 14985 rap 14986 pop', 'edm', 'electronic', 'electro-pop', 'alternative r&b', 'synth-pop 14987 pop 14988 rock', 'adult alternative', 'heartland rock 14989 rock', 'r&b', 'pop', 'nineties', 'singer-songwriter', 'race / ethnicity', 'pop-rock 14990 rock', 'alternative dance', 'funk rock', 'nineties', 'adult alternative', 'alternative rock', 'ireland 14991 r&b', 'rap', 'new jack swing 14992 country', 'rock 14993 rap', 'pop', 'r&b', 'motown', 'singer-songwriter', 'new jack swing', 'soul pop', 'soul 14994 pop 14995 r&b 14996 pop', 'reggae 14997 r&b 14998 pop 14999 rock', 'heavy metal', 'hard rock 15000 r&b', 'new jack swing 15001 rap 15002 pop 15003 pop', 'latin freestyle edm 15004 pop 15005 rock', 'alternative', 'nineties', 'hard rock', 'alternative rock', 'punk rock', 'grunge 15006 rock', 'nineties', 'alternative metal', 'alternative', 'alternative rock', 'heavy metal', 'hard rock', 'metal', 'ballad 15007 pop', 'ballad', 'piano', 'concert', 'live', 'cover', 'singer-songwriter 15008 rap', 'screen 15009 r&b 15010 rap 15011 pop 15012 pop', 'latin freestyle edm 15013 rap 15014 r&b 15015 pop 15016 r&b', 'soul 15017 pop 15018 pop', 'dance-pop', 'nineties', 'memes 15019 rock', 'nineties', 'acoustic', 'glam rock', 'soft rock 15020 pop 15021 pop 15022 rock 15023 rap', 'rock', 'psychedelic rock', 'funk rock', 'rap rock', 'alternative', 'alternative rock 15024 rock', 'metal', 'cover 15025 pop', 'r&b', 'new jack swing', 'soul pop 15026 r&b', 'pop', 'soul 15027 pop 15028 pop', 'r&b', 'funk', 'ballad', 'soul 15029 rock', 'hard rock', 'heavy metal 15030 r&b', 'cover', 'funk', 'soul', 'soul pop 15031 pop', 'ireland 15032 rock 15033 rap', 'west coast 15034 rock', 'madchester', 'alternative dance', 'alternative', 'alternative rock', 'british rock', 'uk 15035 r&b', 'pop', 'dance', 'house 15036 pop 15037 pop 15038 rap 15039 rap 15040 pop', 'nineties', 'soundtrack', 'canada', 'musicals', 'ballad', 'disney 15041 rap 15042 rock 15043 r&b', 'pop', 'nineties', 'singer-songwriter', 'soul', 'soul pop 15044 pop 15045 pop 15046 pop', 'nineties', 'soul pop', 'soul', 'piano', 'uk', 'adult contemporary', 'blue-eyed soul', 'pop-rock 15047 pop 15048 pop 15049 r&b 15050 rap', 'new jack swing 15051 pop 15052 pop 15053 pop 15054 rock', 'pop-rock', 'nineties', 'uk', 'blues rock 15055 rock 15056 r&b', 'pop', 'dance 15057 pop 15058 r&b', 'ballad', 'adult contemporary', 'easy listening 15059 pop 15060 rock', 'singer-songwriter', 'memorial', 'blues rock', 'adult contemporary', 'soundtrack', 'ballad', 'folk rock', 'acoustic', 'folk 15061 pop 15062 rap', 'conscious hip-hop', 'east coast 15063 pop 15064 pop', 'rock', 'ballad', 'hard rock', 'piano 15065 pop 15066 rap 15067 rap', 'battle rap', 'underground hip-hop 15068 rock', 'heavy metal', 'ballad 15069 rap', 'hip-hop', 'hardcore hip-hop', 'west coast 15070 rock', 'alternative rock', 'alternative dance', 'indie rock', 'alternative pop', 'house 15071 r&b', 'pop 15072 pop 15073 r&b', 'pop', 'nineties', 'singer-songwriter 15074 pop 15075 pop 15076 r&b', 'rap 15077 rap', 'jazz rap', 'gangsta rap', 'east coast 15078 pop 15079 pop', 'ireland', 'nineties', 'new age 15080 pop', 'dance 15081 rap', 'jazz rap', 'east coast 15082 pop', 'synth-pop', 'electro-pop', 'electronic', 'new wave 15083 pop 15084 pop 15085 pop 15086 rap 15087 pop', 'house', 'dance 15088 rap 15089 pop 15090 r&b 15091 rap', 'pop', 'christian', 'gospel', 'christian rap 15092 rap 15093 rock 15094 rock', 'pop-rock', 'nineties', 'alternative rock', 'ireland 15095 r&b', 'soundtrack', 'singer-songwriter', 'soul pop', 'new jack swing 15096 pop', 'r&b', 'soul pop', 'new jack swing 15097 pop 15098 rock', 'nineties', 'post-punk', 'neo-psychedelia', 'alternative', 'grunge', 'alternative rock 15099 pop', 'r&b', 'nineties', 'funk-pop', 'funk', 'girl group', 'soul', 'soul pop', 'dance-pop', 'new jack swing 15100 pop 15101 pop', 'rap 15102 rap', 'hip-hop', 'bass music 15103 rock', 'hard rock 15104 rock', 'nineties', 'album-oriented rock (aor)', 'heavy metal', 'ballad', 'metal 15105 r&b 15106 pop', 'latin freestyle edm 15107 rap 15108 rock', 'punk rock', 'power pop 15109 pop 15110 rap', 'hip-hop', 'atlanta', 'g-funk', 'dirty south 15111 rock', 'hard rock', 'alternative rock 15112 rock', 'singer-songwriter', 'alternative', 'pop-rock', 'british rock', 'uk', 'alternative rock', 'gothic rock 15113 pop 15114 rock', 'nineties', 'adult alternative', 'alternative rock', 'ballad 15115 r&b 15116 pop', 'latin freestyle edm 15117 pop', 'r&b', 'soul', 'soul pop 15118 rap', 'west coast 15119 rock', 'uk', 'glam metal', 'hard rock 15120 rap', 'memes', 'nineties', 'bounce', 'west coast 15121 rap 15122 rock', 'ballad', 'power metal 15123 r&b', 'new jack swing 15124 pop 15125 rap', 'edm', 'dance', 'electronic', 'techno 15126 r&b', 'rap 15127 pop', 'rock', 'lgbtq+', 'singer-songwriter', 'adult alternative', 'ballad', 'adult contemporary', 'pop-rock 15128 pop 15129 pop', 'nineties 15130 rap 15131 rock', 'glam metal', 'glam rock 15132 rap', 'gangsta rap', 'g-funk', 'west coast', 'hip-hop 15133 pop', 'cuba', 'americana 15134 r&b', 'pop', 'nineties', 'singer-songwriter', 'soul', 'soul pop 15135 pop 15136 pop', 'r&b', 'motown', 'ballad', 'soul pop', 'soul 15137 pop 15138 r&b', 'pop 15139 pop 15140 rock', 'hard rock', 'nineties', 'alternative rock', 'grunge', 'comedy', 'parody 15141 rock', 'british rock', 'pop-rock', 'uk', 'alternative rock 15142 rock', 'pop', 'adult contemporary', 'uk', 'ballad', 'pop-rock 15143 pop 15144 pop 15145 r&b', 'pop', 'soul', 'soul pop 15146 pop 15147 country', 'rock', 'nineties 15148 pop 15149 rap', 'hip-hop', 'east coast 15150 pop 15151 pop 15152 rap 15153 pop 15154 pop', 'country', 'rock', 'canada 15155 pop 15156 rock 15157 rap 15158 pop', 'nineties', 'ballad 15159 rap 15160 r&b 15161 pop', 'alternative pop', 'ballad', 'piano 15162 r&b', 'dance 15163 r&b', 'pop', 'new jack swing', 'soul', 'soul pop 15164 rap 15165 r&b', 'pop', 'soul 15166 rap', 'pop', 'r&b', 'remix', 'funk', 'house', 'garage house', 'dance', 'dance-pop', 'soul', 'soul pop 15167 pop', 'ballad', 'soul 15168 pop 15169 r&b', 'new jack swing 15170 r&b', 'new jack swing 15171 rap', 'atlanta', 'g-funk 15172 rap', 'abstract rap', 'jazz rap', 'boom bap', 'nineties', 'posse cut', 'hip-hop', 'east coast 15173 r&b', 'pop', 'nineties', 'girl group', 'cover', 'soul', 'soul pop 15174 rock', 'sixties', 'singer-songwriter', 'folk', 'folk rock 15175 pop', 'singer-songwriter', 'red hot organization', 'electro-pop', 'dance-pop', 'dance 15176 rock', 'nineties', 'singer-songwriter', 'alternative', 'adult alternative', 'alternative rock', 'pop-rock', 'college rock', 'uk', 'british rock 15177 pop 15178 rock 15179 rap 15180 pop 15181 pop 15182 rap', 'conscious hip-hop', 'experimental hip-hop', 'hip-hop 15183 rock', 'heartland rock', 'singer-songwriter 15184 pop 15185 r&b', 'funk', 'adult contemporary', 'ballad', 'soul 15186 pop', 'house', 'dance 15187 pop 15188 pop', 'rock', 'nineties', 'glam metal', 'piano', 'ballad 15189 rock 15190 rap', 'jazz rap', 'east coast', 'boom bap', 'conscious hip-hop 15191 pop', 'rock', 'nineties', 'uk', 'adult contemporary', 'ballad', 'pop-rock 15192 rock 15193 pop 15194 rap', 'nineties', 'west coast', 'hip-hop 15195 pop 15196 pop', 'nineties', 'ballad', 'soundtrack 15197 pop', 'gothic rock 15198 pop 15199 pop 15200 rap', 'funk', 'jazz rap', 'east coast 15201 rock', 'pop', 'glam metal 15202 pop', 'latin freestyle edm 15203 rap 15204 pop 15205 rap', 'r&b', 'pop', 'nineties', 'singer-songwriter', 'dance-pop', 'funk', 'dance 15206 rock', 'alternative rock', 'ireland 15207 rap', 'bay area', 'west coast 15208 r&b 15209 pop 15210 pop', 'latin freestyle edm 15211 pop 15212 pop 15213 rap', 'r&b', 'soul', 'soundtrack', 'new jack swing 15214 rock', 'alternative metal', 'alternative rock', 'hard rock', 'heavy metal', 'metal 15215 pop', 'synth-pop', 'electro-pop', 'electronic 15216 rap 15217 rap', 'west coast', 'g-funk 15218 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 15219 country', 'singer-songwriter', 'honky tonk 15220 pop 15221 rock', 'nineties', 'uk', 'pop-rock 15222 r&b', 'new jack swing 15223 rock', 'ballad', 'pop-rock 15224 rock', 'pop', 'canada', 'adult alternative', 'adult contemporary', 'pop-rock 15225 pop 15226 rock 15227 r&b', 'rap', 'singer-songwriter', 'new jack swing 15228 rock', 'nineties', 'hard rock', 'alternative rock', 'grunge 15229 pop', 'latin freestyle edm 15230 pop 15231 rock 15232 rock', 'folk 15233 pop 15234 rap 15235 pop 15236 pop 15237 rap 15238 pop 15239 rap', 'pop', 'techno', 'house', 'eurodance', 'dance 15240 pop 15241 pop 15242 rock 15243 r&b', 'pop 15244 pop 15245 pop', 'r&b', 'new jack swing', 'soul', 'soul pop 15246 rock', 'glam rock', 'glam metal 15247 rock', 'history 15248 r&b', 'new jack swing', 'hip-hop', 'soul 15249 pop 15250 r&b', 'pop', 'nineties', 'singer-songwriter', 'soul', 'soul pop 15251 rap 15252 pop 15253 r&b 15254 r&b', 'pop', 'rap', 'new jack swing 15255 pop', 'baroque pop', 'uk', 'scotland', 'nineties', 'soul pop 15256 pop 15257 rock 15258 pop', 'nineties', 'cover 15259 rock', 'r&b', 'pop', 'rap', 'race / ethnicity', 'nineties', 'girl group', 'funk rock', 'pop-rock 15260 pop 15261 pop 15262 pop 15263 r&b', 'pop', 'hip-hop 15264 pop 15265 r&b', 'pop 15266 rap 15267 pop', 'dance 15268 rap', 'dirty south 15269 pop 15270 rap', 'new jack swing 15271 r&b', 'pop', 'new jack swing', 'soul', 'soul pop 15272 r&b 15273 pop 15274 pop 15275 rock', 'blues', 'jazz 15276 pop', 'rock', 'electronic rock', 'trip-hop', 'nineties', 'uk', 'british rock', 'downtempo', 'world music', 'art pop', 'art rock 15277 pop', 'rap', 'new jack swing 15278 rap', 'atlanta 15279 pop', 'rap', 'r&b', 'rock', 'new jack swing 15280 country', 'rock 15281 pop', 'r&b 15282 pop', 'r&b', 'ballad', 'soul 15283 pop 15284 pop', 'nineties', 'house', 'dance 15285 pop', 'r&b', 'soul', 'soul pop 15286 r&b', 'pop', 'soul', 'soul pop 15287 rap', 'jamaica', 'dancehall 15288 r&b', 'soul 15289 rap 15290 pop 15291 pop 15292 rock 15293 rock', 'thrash metal', 'heavy metal', 'speed metal', 'metal 15294 pop 15295 pop 15296 rock', 'nineties', 'glam metal 15297 r&b', 'jamaica', 'dancehall 15298 country 15299 pop 15300 rock', 'nineties', 'folk rock', 'alternative rock 15301 pop 15302 pop', 'rock', 'pop-rock', 'adult contemporary 15303 pop 15304 r&b', 'new jack swing', 'soul pop', 'soul 15305 pop 15306 pop 15307 rock', 'groove metal', 'heavy metal', 'metal 15308 rock', 'alternative rock', 'ireland 15309 pop 15310 pop 15311 pop', 'r&b', 'nineties', 'uk', 'uk r&b', 'soul jazz', 'singer-songwriter', 'smooth jazz', 'ballad', 'adult contemporary', 'soul pop', 'soul', 'jazz 15312 pop 15313 rap 15314 r&b', 'pop', 'ballad', 'nineties', 'cover', 'soundtrack', 'soul pop', 'soul 15315 rap', 'r&b', 'new jack swing', 'house 15316 country 15317 rock', 'folk rock', 'adult alternative', 'alternative rock 15318 r&b 15319 pop 15320 r&b', 'soul pop', 'new jack swing 15321 rap', 'hip-hop', 'hardcore hip-hop', 'west coast', 'gangsta rap 15322 rock', 'ballad', 'hard rock 15323 r&b', 'new jack swing', 'soul', 'soul pop 15324 pop', 'rock', 'canada 15325 r&b 15326 pop 15327 rap 15328 pop 15329 pop', 'r&b', 'rock', 'psychedelic soul', 'psychedelic', 'pop-rock 15330 rock', 'pop', 'folk', 'folk rock', 'pop-rock', 'adult alternative', 'ballad', 'adult contemporary', 'alternative', 'college rock 15331 pop', 'nineties', 'dance-pop', 'deep house', 'house 15332 r&b', 'pop', 'girl group', 'soul', 'soul pop 15333 r&b', 'rap', 'new jack swing 15334 pop 15335 rock 15336 r&b', 'new jack swing', 'soul pop', 'soul 15337 r&b', 'pop', 'nineties', 'world music', 'singer-songwriter', 'gospel 15338 rap 15339 rock', 'alternative', 'electronic rock', 'alternative rock', 'electronic 15340 rock', 'hard rock', 'glam metal 15341 pop 15342 pop 15343 rap 15344 r&b', 'pop', 'musicals', 'cover', "children's music", 'soundtrack', 'disney', 'ballad 15345 r&b', 'new jack swing', 'soul', 'producer 15346 rap', 'east coast', 'hip-hop 15347 rap', 'nineties', 'west coast', 'hip-hop 15348 r&b', 'pop', 'rock', 'uk', 'british rock', 'nineties', 'funk-pop', 'soul pop', 'uk r&b', 'blue-eyed soul', 'soul', 'funk rock', 'funk 15349 pop', 'r&b', 'nineties', 'girl group', 'soul pop', 'new jack swing 15350 pop 15351 rap 15352 pop 15353 r&b 15354 pop 15355 pop 15356 r&b', 'pop 15357 rap 15358 r&b', 'nineties', 'new jack swing 15359 rap', 'patois', 'ragga', 'jamaica', 'dancehall', 'reggae 15360 pop', 'r&b', 'deep house', 'dance-pop', 'live', 'house', 'dance', 'soul', 'soul pop 15361 rock', 'soft rock', 'nineties 15362 rap', 'patois', 'new york', 'hip-hop', 'canada', 'reggae', 'dancehall 15363 rap 15364 rap', 'east coast', 'jazz rap 15365 rap', 'r&b', 'pop', 'singer-songwriter', 'new jack swing', 'soul pop 15366 r&b 15367 pop', 'synth-pop', 'dance-pop 15368 rock', 'ballad 15369 rock', 'pop', 'alternative rock 15370 pop 15371 pop 15372 pop 15373 rock', 'blues rock 15374 pop 15375 rap', 'boom bap', 'jazz rap', 'east coast 15376 rock', 'nineties', 'pop-rock', 'alternative rock 15377 rap', 'gangsta rap', 'hip-hop', 'east coast 15378 rap 15379 rap', 'gangsta rap', 'hip-hop', 'hardcore hip-hop', 'west coast', 'g-funk 15380 r&b', 'rap', 'new jack swing 15381 rock', 'nineties', 'memorial', 'adult contemporary', 'soundtrack', 'adult alternative', 'alternative rock 15382 r&b', 'pop', 'new jack swing', 'soul pop 15383 r&b 15384 pop 15385 pop', 'r&b', 'soul pop', 'soul 15386 rock', 'pop-rock', 'hard rock 15387 r&b', 'rock 15388 pop', 'rock', 'country', 'americana', 'cover', 'folk 15389 r&b', 'pop', 'lgbtq+', 'house', 'dance 15390 rap 15391 r&b 15392 r&b', 'pop', 'nineties', 'singer-songwriter', 'ballad 15393 pop', 'adult contemporary', 'latin pop', 'ballad 15394 rock 15395 pop 15396 r&b', 'soul pop', 'soul 15397 pop', 'rock', 'nineties', 'uk', 'pop-rock', 'singer-songwriter 15398 rock 15399 pop 15400 pop', 'r&b', 'nineties', 'ballad', 'soundtrack', 'soul pop', 'soul 15401 pop 15402 pop', 'rock', 'uk', 'adult contemporary', 'ballad', 'pop-rock 15403 pop', 'r&b', 'new jack swing', 'soul', 'soul pop 15404 rap 15405 pop 15406 rock', 'pop-rock', 'dark wave', 'electronic rock', 'baroque pop', 'electronic', 'blues rock', 'industrial rock', 'british rock', 'uk', 'alternative rock', 'synth rock 15407 rap 15408 rap', 'nineties', 'hip-hop', 'gangsta rap', 'west coast 15409 rock', 'pop', 'alternative', 'adult contemporary', 'adult alternative', 'pop-rock', 'alternative rock', 'folk rock', 'folk', 'soft rock', 'orchestral 15410 rap 15411 pop 15412 rap 15413 r&b 15414 pop 15415 country', 'rock', 'singer-songwriter 15416 pop 15417 pop 15418 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 15419 rock', 'pop', 'alternative rock', 'pop-rock', 'soul pop', 'piano 15420 pop', 'r&b', 'uk', 'uk r&b', 'soul jazz', 'singer-songwriter', 'soul pop', 'soul', 'jazz 15421 rap 15422 pop 15423 r&b', 'pop', 'new jack swing', 'girl group', 'soul pop 15424 rock', 'metal', 'punk rock', 'rap rock', 'alternative rock', 'alternative metal', 'groove metal', 'heavy metal', 'comedy 15425 pop 15426 rap 15427 rap', 'hip-hop', 'underground hip-hop', 'east coast 15428 pop', 'alternative 15429 pop 15430 pop', 'producer', 'acid jazz', 'house', 'alternative dance', 'alternative pop', 'electronica', 'electronic 15431 rap', 'hip-hop', 'hardcore hip-hop', 'east coast', 'gangsta rap 15432 r&b', 'rock 15433 rap', 'gangsta rap', 'east coast', 'hardcore hip-hop 15434 rap', 'nineties', 'posse cut', 'east coast', 'hip-hop 15435 rock 15436 rap 15437 pop', 'nineties', 'house', 'electro-pop', 'dance 15438 pop 15439 rock', 'r&b', 'pop', 'nineties', 'singer-songwriter', 'soul', 'soul pop 15440 rock 15441 pop 15442 r&b 15443 country 15444 pop', 'nineties', 'art pop', 'electro-pop', 'pop-rock', 'synth-pop', 'new wave 15445 pop 15446 pop 15447 pop', 'r&b', 'soul', 'soul pop 15448 rap', 'r&b', 'christian rap', 'christian', 'hip-hop 15449 rap', 'r&b', 'singer-songwriter', 'new jack swing 15450 pop', 'pop-rock', 'uk', 'cover 15451 rap 15452 rap', 'pop 15453 pop 15454 rap', 'pop', 'euro house', 'scandinavia', 'nineties', 'electronic', 'nigerian rap', 'svensk rap', 'pop rap', 'sverige', 'nigeria 15455 rap 15456 rock', 'nineties', 'pop-rock', 'alternative rock 15457 r&b', 'pop', 'singer-songwriter', 'soul pop', 'funk', 'new jack swing 15458 pop', 'dance', 'electronic', 'eurodance 15459 rock', 'dance rock', 'pop-rock', 'alternative rock', 'alternative dance 15460 rap 15461 pop 15462 rap', 'jazz rap', 'west coast 15463 r&b', 'pop', 'teen pop 15464 rock 15465 rap 15466 rock 15467 pop 15468 country', 'piano', 'honky tonk', 'nineties', 'ballad 15469 r&b', 'dance 15470 pop', 'singer-songwriter', 'british rock', 'uk', 'concert', 'live', 'cover 15471 r&b', 'rap', 'canada 15472 r&b', 'soul pop', 'soul 15473 r&b', 'ballad', 'new jack swing 15474 rap', 'g-funk 15475 rock', 'indie pop', 'indie rock', 'alternative', 'alternative rock 15476 r&b 15477 r&b', 'soul pop', 'dance-pop', 'new jack swing', 'soul 15478 r&b', 'pop', 'soul', 'soul pop', 'adult contemporary 15479 pop 15480 rock 15481 rap', 'hip-hop', 'atlanta', 'drum & bass', 'dirty south 15482 rap', 'boom bap', 'gangsta rap', 'east coast', 'hardcore hip-hop 15483 rap 15484 pop', 'synth-pop', 'dance-pop 15485 pop 15486 rap 15487 pop', 'cover 15488 rock', 'alternative r&b', 'ballad', 'electro-pop', 'electronic rock', 'electronic', 'synth punk', 'pop-punk', 'pop-rock', 'industrial', 'baroque pop', 'dark wave', 'industrial rock', 'alternative', 'british rock', 'uk', 'alternative rock', 'trip-hop', 'synth rock', 'synth-pop 15489 rock', 'soft rock', 'nineties', 'british rock', 'uk', 'easy listening', 'adult alternative', 'adult contemporary', 'ballad', 'pop-rock 15490 r&b', 'soul', 'new jack swing 15491 r&b', 'new jack swing 15492 pop 15493 r&b', 'new jack swing', 'funk', 'soul 15494 r&b 15495 pop', 'r&b', 'live', 'cover', 'soul pop', 'soul 15496 r&b', 'soul pop', 'funk', 'soul', 'new jack swing 15497 rock', 'nineties', 'adult alternative', 'ballad', 'alternative rock 15498 r&b 15499 rock', 'pop-rock', 'eighties', 'scotland', 'alternative rock', 'college rock', 'folk rock 15500 country 15501 pop', 'france 15502 rap 15503 rap 15504 rap', 'hip-hop', 'east coast 15505 pop 15506 pop 15507 pop', 'r&b', 'soundtrack', 'soul pop', 'soul 15508 pop 15509 rap', 'r&b', 'girl group 15510 rock', 'post-grunge', 'nineties', 'alternative', 'british rock', 'grunge', 'alternative rock', 'adult alternative', 'uk 15511 country', 'rock', 'nineties', 'singer-songwriter', 'honky tonk 15512 rap', 'boom bap', 'jazz rap', 'east coast 15513 rap', 'battle rap 15514 r&b', 'rap', 'west coast', 'alternative r&b 15515 country 15516 pop', 'r&b', 'soul', 'soul pop 15517 rap', 'basketball 15518 rap 15519 rap', 'west coast', 'hip-hop 15520 pop', 'electro-pop', 'dance', 'cover', 'dance-pop 15521 rock', 'r&b', 'pop', 'funk rock', 'soul', 'pop-rock 15522 rap', 'nineties', 'hip-hop', 'boom bap', 'west coast 15523 pop 15524 r&b 15525 country', 'nineties', 'singer-songwriter', 'honky tonk 15526 rap 15527 rock', 'alternative rock 15528 pop 15529 country', 'folk 15530 rap', 'nineties', 'hip-hop', 'underground hip-hop', 'east coast 15531 rock 15532 r&b', 'pop', 'nineties', 'singer-songwriter', 'video game', 'soul', 'gospel', 'soul pop', 'soundtrack 15533 pop 15534 rock', 'electronic rock', 'alternative rock', 'pop-rock', 'synth-pop 15535 rap 15536 pop 15537 rap 15538 rap 15539 pop', 'nineties', 'singer-songwriter', 'synth-pop', 'ballad 15540 pop', 'rock', 'r&b', 'nineties', 'singer-songwriter', 'dance-pop', 'dance', 'new jack swing 15541 rap 15542 pop 15543 rock', 'adult alternative', 'alternative rock', 'pop-rock 15544 rap', 'atlanta 15545 rock 15546 rap', 'hip-hop', 'hardcore hip-hop', 'west coast', 'gangsta rap 15547 rock', 'nineties', 'glam rock', 'hard rock', 'singer-songwriter 15548 r&b 15549 country', 'rock 15550 rap', 'gangsta rap', 'west coast 15551 r&b', 'pop', 'singer-songwriter 15552 rap 15553 pop', 'nineties', 'jamaica', 'reggae 15554 r&b 15555 r&b', 'electro-funk', 'p-funk', 'funk 15556 rap', 'dirty south 15557 country 15558 pop 15559 rock', 'folk rock', 'uk 15560 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 15561 rock 15562 r&b', 'jamaica', 'reggae 15563 pop 15564 r&b 15565 rock', 'nineties', 'adult alternative', 'pop-rock', 'folk rock', 'alternative rock', 'college rock 15566 rock', 'pop', 'college rock', 'adult contemporary', 'adult alternative', 'alternative rock', 'folk rock', 'folk', 'soft rock', 'pop-rock 15567 rap', 'gangsta rap', 'funk 15568 r&b', 'pop', 'adult contemporary 15569 pop', 'r&b', 'nineties', 'new jack swing', 'soul', 'soul pop 15570 r&b', 'soul 15571 pop', 'euro house', 'house', 'nineties', 'deutschland', 'eurodance', 'memes', 'dance', 'electro-pop 15572 rap', 'battle rap 15573 pop 15574 pop 15575 pop 15576 pop 15577 pop', 'synth-pop', 'new wave 15578 rap', 'house', 'new jack swing', 'soundtrack 15579 rock 15580 pop', 'rock', 'nineties', 'soft rock', 'easy listening', 'adult contemporary', 'adult alternative', 'pop-rock', 'ballad', 'alternative rock 15581 pop', 'house', 'alternative dance', 'synth-pop', 'electronic 15582 rock', 'pop-rock', 'hard rock', 'nineties', 'glam rock', 'ballad 15583 rap', 'east coast', 'hip-hop 15584 r&b', 'pop', 'eighties', 'ballad', 'funk 15585 pop', 'r&b', 'nineties', 'atlanta', 'new jack swing 15586 pop', 'scandipop', 'sverige', 'electronic', 'reggae', 'euro reggae 15587 r&b', 'soul 15588 rock 15589 pop', 'r&b', 'bay area', 'singer-songwriter', 'soul pop', 'new jack swing', 'ballad', 'soul 15590 rap', 'hardcore hip-hop', 'hip-hop', 'west coast', 'gangsta rap', 'g-funk 15591 pop 15592 pop 15593 pop 15594 pop', 'scotland', 'uk 15595 rap 15596 pop 15597 pop', 'rap', 'nineties 15598 rock', 'pop', 'cover', 'soft rock', 'acoustic', 'pop-rock 15599 country 15600 pop 15601 country 15602 pop', 'pop-rock 15603 rap 15604 rock 15605 rap', 'boom bap', 'hardcore hip-hop', 'east coast 15606 rock', 'yacht rock', 'adult alternative', 'ska', 'reggae 15607 pop 15608 rock', 'pop 15609 pop', 'r&b', 'soul', 'soul pop', 'girl group 15610 pop', 'r&b', 'soul', 'soul pop 15611 pop', 'r&b', 'soul', 'soul pop', 'new jack swing 15612 rap', 'east coast', 'hip-hop 15613 pop 15614 rap', 'battle rap 15615 rap 15616 rap', 'jazz rap', 'boom bap', 'hardcore hip-hop', 'east coast', 'gangsta rap 15617 rap', 'east coast 15618 r&b', 'pop', 'ballad', 'singer-songwriter', 'soul pop', 'soul', 'soundtrack 15619 rock', 'pop', 'adult contemporary', 'ballad', 'pop-rock 15620 r&b', 'pop', 'nineties', 'singer-songwriter', 'ballad', 'adult contemporary', 'soul pop', 'soul 15621 rap', 'basketball', 'east coast', 'g-funk 15622 rap', 'gangsta rap', 'g-funk', 'west coast 15623 pop 15624 r&b', 'pop', 'singer-songwriter', 'soul pop 15625 pop', 'rock', 'indie rock', 'soft rock', 'nineties', 'ballad', 'adult contemporary', 'baroque pop', 'alternative', 'adult alternative', 'pop-rock', 'ireland', 'alternative rock 15626 rap 15627 pop 15628 pop 15629 rock 15630 rap', 'conscious hip-hop', 'west coast', 'boom bap 15631 r&b 15632 r&b', 'funk 15633 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast 15634 pop 15635 rock 15636 rap', 'boom bap', 'jazz rap', 'east coast 15637 pop', 'eurodance', 'deutschland 15638 rock', 'pop', 'pop-rock', 'concert', 'adult alternative', 'alternative rock', 'live', 'cover', 'acoustic 15639 r&b 15640 rap 15641 rap', 'diss track', 'beef', 'west coast', 'gangsta rap', 'g-funk 15642 rap', 'jazz rap', 'west coast 15643 country 15644 pop 15645 rock', 'alternative rock 15646 r&b', 'pop', 'adult contemporary 15647 rock', 'adult alternative', 'alternative rock', 'pop-rock 15648 rap', 'atlanta 15649 pop 15650 pop', 'ballad', 'uk 15651 rap', 'boom bap', 'east coast', 'jazz rap', 'conscious hip-hop 15652 r&b', 'rap', 'hip-hop', 'underground hip-hop', 'g-funk 15653 rock', 'cover 15654 pop', 'latin freestyle edm 15655 r&b', 'soul', 'soul pop 15656 rap', 'acid jazz', 'jazz rap', 'uk rap', 'jazz fusion', 'alternative', 'blue note', 'jazz 15657 rock', 'pop', 'adult contemporary', 'ballad', 'canada', 'pop-rock 15658 pop 15659 pop', 'country', 'ballad', 'pop country 15660 rap 15661 rock', 'grunge', 'adult alternative', 'pop-rock', 'noise pop', 'noise rock', 'alternative rock', 'indie rock 15662 rock 15663 rap 15664 rap', 'gangsta rap', 'west coast 15665 r&b', 'pop', 'christmas', 'remix', 'soul', 'soul pop 15666 pop 15667 pop 15668 country', 'singer-songwriter', 'honky tonk', 'alternative country 15669 r&b 15670 rock', 'ireland 15671 r&b', 'dance 15672 rap', 'hip-hop', 'underground hip-hop', 'jazz rap', 'east coast 15673 pop 15674 pop', 'r&b', 'atlanta', 'soul', 'soul pop 15675 pop 15676 rock', 'adult alternative', 'blues rock', 'heartland rock', 'pop-rock 15677 pop 15678 pop', 'rock', 'alternative pop', 'art rock', 'synth-pop', 'new wave', 'art pop', 'pop-rock', 'uk 15679 country 15680 r&b', 'a cappella 15681 pop', 'sverige', 'scandipop', 'electronic', 'reggae', 'euro reggae', 'nineties 15682 r&b', 'dance 15683 rap', 'battle rap 15684 country 15685 pop 15686 r&b', 'soundtrack', 'soul 15687 r&b', 'new jack swing 15688 rap', 'hip-hop', 'hardcore hip-hop', 'boom bap', 'west coast 15689 rap', 'underground hip-hop', 'hip-hop', 'bass music 15690 r&b', 'pop 15691 r&b 15692 r&b', 'pop 15693 r&b', 'bay area', 'singer-songwriter', 'soul', 'soul pop 15694 pop 15695 pop', 'r&b', 'rap', 'nineties 15696 r&b', 'rap', 'new jack swing', 'hip-hop 15697 r&b', 'jazz', 'soul', 'ballad', 'funk 15698 r&b', 'pop', 'adult contemporary', 'house 15699 rap 15700 pop', 'r&b', 'singer-songwriter', 'new jack swing 15701 rock', 'progressive rock', 'hard rock 15702 rock 15703 rap 15704 rap', 'rock', 'nineties', 'abstract rap', 'anti-folk', 'hip-hop', 'folk', 'rap rock', 'alternative rock 15705 rap', 'nineties', 'hip-hop', 'west coast', 'g-funk 15706 rap 15707 pop', 'jamaica', 'reggae', 'dancehall 15708 rap', 'boom bap', 'east coast', 'hardcore hip-hop', 'hip-hop 15709 pop', 'latin freestyle edm 15710 rock', 'alternative rock', 'canada', 'nineties', 'folk rock', 'folk 15711 r&b', 'nineties', 'funk', 'new jack swing', 'soul 15712 rock', 'nineties', 'alternative rock', 'alternative', 'british rock', 'uk', 'indie rock', 'indie 15713 r&b', 'rap', 'pop', 'nineties 15714 rap', 'hardcore hip-hop', 'boom bap', 'conscious hip-hop', 'protest songs', 'east coast 15715 rap', 'new jack swing', 'underground hip-hop', 'hip-hop 15716 country', 'nineties 15717 r&b 15718 pop', 'electro-pop', 'deep house', 'dance-pop', 'art pop', 'electronic', 'iceland', 'house 15719 rap', 'gangsta rap', 'g-funk', 'west coast 15720 rock', 'eighties', 'heavy metal', 'hard rock', 'blues rock 15721 country', 'folk 15722 rap', 'remix 15723 rock', 'piano', 'alternative rock 15724 rap', 'west coast 15725 rap', 'basketball', 'east coast 15726 pop 15727 rap', 'christmas rap', 'atlanta', 'dirty south 15728 rock', 'reggae', 'lovers rock', 'jamaica 15729 country 15730 pop 15731 rock', 'blues 15732 country 15733 pop', 'r&b', 'soul 15734 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 15735 country 15736 rap', 'freestyle 15737 rock', 'ballad', 'doo-wop', 'blues rock 15738 rap', 'east coast', 'hip-hop', 'boom bap 15739 pop', 'nineties', 'downtempo', 'new age', 'electronic 15740 rap 15741 country', 'honky tonk 15742 pop', 'r&b', 'new jack swing', 'soul', 'soul pop 15743 rap', 'gangsta rap', 'jazz rap', 'east coast 15744 r&b', 'new jack swing', 'soul pop 15745 rap', 'colombia', 'trinidad & tobago', 'nineties 15746 pop 15747 rock', 'metal', 'industrial metal', 'industrial rock', 'industrial 15748 rap 15749 rap', 'en español', 'latin music 15750 pop 15751 rap', 'west coast 15752 rap 15753 rock', 'alternative rock', 'indie rock 15754 pop 15755 pop 15756 pop', 'r&b', 'jazz-funk', 'soul', 'soul pop', 'funk', 'jazz 15757 rock', 'post-grunge', 'grunge', 'hard rock', 'alternative rock 15758 r&b', 'rap', 'underground hip-hop', 'hip-hop', 'gangsta rap', 'west coast', 'new jack swing', 'g-funk 15759 r&b 15760 rap 15761 rock 15762 pop', 'cover', 'nu disco', 'dance', 'electro-pop 15763 rock', 'punk rock', 'screen', 'tv 15764 rock', 'nineties', 'pop-rock', 'adult contemporary', 'adult alternative', 'alternative', 'post-grunge', 'punk rock', 'ireland', 'alternative rock 15765 pop', 'r&b', 'soul', 'soul pop 15766 country 15767 pop', 'latin freestyle edm 15768 rap 15769 rap 15770 rap 15771 rock', 'alternative rock 15772 r&b', 'rap', 'hip-hop', 'underground hip-hop', 'g-funk 15773 pop 15774 rock', 'pop 15775 rap', 'battle rap 15776 rap', 'jazz rap', 'boom bap', 'east coast 15777 rock', 'punk rock', 'screen', 'tv 15778 r&b', 'nineties 15779 rap', 'gangsta rap', 'hardcore hip-hop', 'jazz rap', 'east coast 15780 pop', 'acoustic 15781 pop', 'rock', 'country', 'alternative', 'alternative rock', 'adult contemporary', 'adult alternative', 'pop country', 'pop-rock 15782 r&b', 'pop', 'atlanta', 'new jack swing 15783 r&b', 'pop', 'neo soul', 'nineties 15784 pop', 'dance-pop 15785 r&b', 'adult contemporary', 'ballad', 'easy listening', 'nineties', 'singer-songwriter', 'soul', 'uk', 'uk r&b 15786 pop', 'ballad', 'electronic', 'synth-pop 15787 rap 15788 r&b', 'pop', 'reggae 15789 pop 15790 rock', 'pop', 'scandipop', 'sverige', 'euro reggae', 'electronic', 'reggae 15791 pop', 'nineties', 'house', 'dance-pop', 'nu disco', 'uk 15792 rock', 'nineties', 'post-grunge', 'alternative rock 15793 pop', 'rock', 'soft rock', 'alternative rock', 'canada', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'pop-rock 15794 r&b', 'pop', 'soul pop', 'soul 15795 rock', 'progressive rock', 'ballad 15796 rap 15797 pop 15798 r&b', 'new jack swing', 'funk', 'soul', 'blues 15799 r&b', 'pop', 'soul', 'soul pop 15800 pop', 'r&b', 'memorial', 'soul', 'soul pop', 'singer-songwriter 15801 country', 'piano', 'acoustic', 'ballad 15802 pop', 'memes', 'cartoon', 'theme song 15803 country 15804 rock', 'punk rock', 'screen', 'tv 15805 r&b 15806 pop 15807 rock', 'ballad', 'nineties', 'blues rock', 'blues', 'singer-songwriter 15808 rap 15809 r&b', 'live 15810 r&b', 'pop', 'singer-songwriter', 'gospel 15811 rap 15812 rock', 'cover 15813 pop', 'nineties', 'house', 'dance-pop', 'dance 15814 rap 15815 rap', 'dirty south', 'gangsta rap', 'hip-hop', 'g-funk 15816 rap', 'west coast', 'g-funk', 'gangsta rap 15817 rock 15818 rock 15819 pop 15820 rap 15821 rock', 'electro-industrial', 'edm', 'electronic', 'industrial', 'industrial rock 15822 rock 15823 rock', 'alternative rock', 'grunge 15824 rock 15825 r&b', 'pop', 'singer-songwriter', 'adult contemporary', 'acoustic', 'soul pop', 'soul 15826 pop 15827 rock 15828 rock', 'nineties', 'art rock', 'new age', 'album-oriented rock (aor)', 'british rock', 'uk', 'progressive rock 15829 pop 15830 pop', 'nineties', 'dance', 'eurodance', 'electronic', 'cover', 'dance-pop', 'electro-pop 15831 pop', 'r&b', 'soul', 'soul pop 15832 rock', 'electronic rock', 'synth rock', 'dance rock', 'alternative', 'nineties', 'british rock', 'new wave', 'alternative dance', 'britpop', 'synth-pop', 'uk 15833 r&b', 'rap', 'new jack swing 15834 pop 15835 rock', 'pop-rock 15836 rap 15837 rap 15838 rap', 'east coast 15839 country 15840 rap', 'hip-hop 15841 r&b 15842 rap', 'battle rap 15843 pop', 'r&b', 'soul', 'soul pop 15844 rap', 'hardcore hip-hop', 'hip-hop', 'horrorcore 15845 pop 15846 pop', 'soundtrack 15847 rap 15848 pop 15849 rock 15850 pop 15851 rap', 'atlanta', 'dirty south', 'funk 15852 pop 15853 rap 15854 rap', 'bay area', 'west coast 15855 rap', 'west coast', 'hip-hop', 'g-funk 15856 rap 15857 pop 15858 r&b', 'jazz', 'east coast 15859 r&b 15860 rap 15861 rap', 'p-funk', 'g-funk', 'funk', 'west coast 15862 rap', 'dancehall 15863 r&b 15864 r&b 15865 rap', 'west coast', 'hip-hop', 'hardcore 15866 r&b', 'pop', 'soul 15867 country', 'nineties 15868 r&b', 'pop', 'soul', 'soul pop 15869 rock', 'country', 'pop', 'soft rock', 'nineties', 'alternative', 'adult alternative', 'pop country', 'adult contemporary', 'pop-rock 15870 pop 15871 pop 15872 rap', 'patois', 'dancehall', 'hip-hop 15873 rock 15874 r&b 15875 pop', 'r&b', 'nineties', 'easy listening', 'adult contemporary', 'motown', 'ballad', 'soul pop', 'soul 15876 rap', 'hip-hop', 'east coast 15877 rap', 'west coast', 'hip-hop', 'hardcore hip-hop', 'soundtrack', 'g-funk 15878 r&b', 'pop', 'funk', 'piano', 'disco', 'seventies 15879 rock', 'pop', 'country', 'alternative pop', 'adult alternative', 'adult contemporary', 'ballad', 'pop-rock 15880 rap', 'pop', 'electro house', 'reggae', 'dance 15881 pop', 'adult contemporary 15882 rock 15883 pop 15884 pop', 'r&b', 'rock', 'new jack swing 15885 rock 15886 r&b', 'pop', 'soul', 'soul pop 15887 pop 15888 rock 15889 rock', 'alternative metal', 'alternative rock', 'hard rock', 'post-grunge', 'grunge 15890 rap 15891 pop', 'house', 'euro house', 'nineties', 'deutschland', 'edm', 'dance', 'electronic', 'eurodance 15892 r&b 15893 pop 15894 rap', 'remix', 'hip-hop 15895 r&b', 'pop', 'ballad', 'neo soul', 'nineties', 'soul', 'soul pop', 'cover 15896 pop', 'cover 15897 pop', 'r&b', 'nineties', 'adult contemporary', 'soul pop', 'soul 15898 rock', 'piano', 'shoegaze', 'alternative rock', 'soundtrack', 'dream pop 15899 r&b', 'nineties', 'soul 15900 r&b', 'pop', 'soul', 'soul pop', 'cover 15901 pop', 'dance-pop', 'dance 15902 rap 15903 rock 15904 country 15905 rap', 'g-funk 15906 pop 15907 r&b 15908 rap 15909 rock', 'art rock', 'folk rock', 'grunge', 'alternative rock 15910 rap 15911 rap 15912 r&b 15913 rap 15914 rap 15915 r&b', 'soul 15916 pop', 'r&b', 'soul pop', 'soul 15917 rap 15918 rock 15919 rock', 'ballad 15920 rock', 'nineties', 'pop-rock', 'grunge', 'alternative rock', 'emo 15921 r&b', 'pop', 'nineties', 'new jack swing 15922 r&b', 'soul 15923 r&b 15924 pop 15925 rock 15926 rock 15927 rap 15928 rock 15929 rap 15930 r&b', 'new jack swing', 'soul 15931 pop 15932 rock', 'power pop', 'indie rock 15933 rock', 'alternative rock', 'alternative 15934 pop 15935 rap 15936 r&b', 'pop', 'funk 15937 country 15938 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 15939 pop', 'r&b', 'new jack swing', 'soul', 'soul pop 15940 country', 'rock 15941 rock 15942 pop 15943 rap 15944 country', 'singer-songwriter', 'americana 15945 rap 15946 pop 15947 pop', 'r&b', 'soul pop', 'soul 15948 country 15949 pop 15950 r&b', 'nineties 15951 rap', 'hip-hop', 'east coast 15952 rock 15953 r&b 15954 pop', 'eurodance', 'dance 15955 pop 15956 pop', 'r&b', 'nineties', 'adult contemporary', 'easy listening', 'ballad', 'motown', 'soul pop', 'soul 15957 rap 15958 rock', 'punk rock', 'screen', 'tv 15959 rap 15960 pop 15961 r&b', 'pop 15962 rap', 'chillout 15963 r&b 15964 r&b 15965 rap 15966 rap', 'west coast', 'g-funk 15967 r&b', 'singer-songwriter', 'soul', 'soul pop 15968 pop 15969 rock', 'folk rock', 'singer-songwriter', 'nineties', 'americana', 'heartland rock 15970 rap', 'gangsta rap', 'g-funk 15971 pop 15972 rock', 'soft rock', 'ballad', 'adult alternative', 'alternative', 'emo', 'alternative rock', 'pop-punk 15973 rock', 'pop-punk', 'punk rock', 'alternative', 'nineties', 'singer-songwriter', 'alternative rock', 'grunge 15974 pop', 'r&b', 'girl group', 'soul', 'soul pop 15975 rap 15976 pop 15977 pop 15978 pop', 'r&b', 'cover', 'soul', 'soul pop 15979 r&b', 'pop', 'nineties', 'ballad 15980 pop 15981 pop 15982 rock', 'pop-rock', 'dream pop', 'experimental rock', 'indie rock', 'alternative pop', 'alternative rock 15983 country 15984 country 15985 rap', 'west coast 15986 pop', 'latin freestyle edm 15987 rock', 'pop', 'alternative rock', 'power pop', 'alternative country', 'singer-songwriter', 'acoustic 15988 rap 15989 rap', 'east coast 15990 country', 'rock', 'nineties', 'soft rock', 'alternative', 'alternative rock', 'folk pop', 'folk rock', 'folk', 'adult alternative', 'ballad', 'adult contemporary', 'alternative country', 'pop country', 'acoustic', 'pop-rock 15991 r&b', 'soul 15992 r&b', 'pop', 'soul', 'soul pop 15993 r&b', 'soul', 'new jack swing 15994 country', 'rock', 'christmas 15995 pop 15996 r&b', 'pop', 'neo soul', 'nineties', 'soul', 'soul pop 15997 rap', 'chart history 15998 pop 15999 r&b', 'rap', 'patois', 'dancehall 16000 rock', 'grunge', 'alternative rock 16001 rap 16002 rap', 'west coast 16003 pop 16004 rock 16005 r&b', 'pop 16006 pop', 'latin pop', 'dance 16007 pop', 'eurodance 16008 rap', 'r&b 16009 pop 16010 pop', 'r&b', 'funk', 'soul pop', 'soul 16011 pop', 'jamaica', 'dancehall 16012 r&b', 'pop', 'soul pop 16013 rap 16014 rap', 'east coast', 'boom bap', 'hip-hop 16015 rap', 'boom bap', 'east coast', 'hardcore hip-hop', 'hip-hop 16016 rap 16017 pop', 'r&b', 'g-funk 16018 rock 16019 rap', 'bass music', 'house', 'hip-hop', 'underground hip-hop 16020 r&b', 'rap 16021 rap 16022 rap 16023 r&b', 'soul 16024 rock 16025 r&b', 'soul 16026 pop 16027 pop 16028 r&b', 'nineties', 'singer-songwriter', 'new jack swing', 'soul 16029 rap', 'g-funk 16030 rap 16031 rap', 'remix', 'gangsta rap', 'boom bap', 'hardcore hip-hop', 'east coast', 'producer 16032 pop', 'r&b', 'soul', 'soul pop 16033 pop 16034 rap', 'bay area', 'g-funk', 'west coast 16035 rap', 'r&b', 'nineties', 'hip-hop', 'new jack swing', 'soul', 'dance-pop 16036 rap', 'hip-hop', 'hardcore hip-hop', 'east coast 16037 pop', 'r&b', 'soul pop 16038 pop', 'r&b', 'motown', 'soul', 'soul pop 16039 rap 16040 pop 16041 pop 16042 r&b', 'pop', 'dance 16043 pop 16044 pop', 'rock', 'baroque pop', 'nineties', 'orchestral', 'uk', 'adult contemporary', 'pop-rock 16045 pop', 'art pop', 'alternative', 'baroque pop', 'alternative pop', 'nineties', 'uk', 'cover 16046 rock', 'pop-rock', 'ballad', 'adult contemporary', 'roots', 'alternative rock', 'heartland rock 16047 pop 16048 pop', 'country', 'nineties', 'edm', 'eurodance', 'electronic', 'techno 16049 rap', 'dancehall', 'reggae 16050 rock 16051 pop 16052 rap', 'soundtrack', 'hip-hop', 'hardcore hip-hop', 'gangsta rap', 'west coast 16053 rap', 'hip-hop', 'east coast 16054 pop', 'uk', 'nineties', 'house', 'dance-pop', 'synth-pop 16055 rap 16056 rock', 'britpop 16057 rock 16058 rock 16059 rock', 'adult alternative', 'indie rock', 'east coast', 'nineties', 'post-grunge', 'post-punk', 'pop-rock', 'alternative rock 16060 rap 16061 pop 16062 r&b', 'soul pop', 'new jack swing', 'soul 16063 r&b', 'pop', 'remix', 'funk 16064 pop 16065 rock', 'adult alternative', 'power pop', 'ballad', 'britpop', 'british rock', 'uk', 'alternative rock 16066 pop 16067 pop 16068 country 16069 rap', 'gangsta rap', 'west coast', 'g-funk 16070 pop', 'r&b', 'ballad', 'cover', 'soul', 'soul pop 16071 country 16072 pop 16073 rock 16074 rap', 'g-funk 16075 rap', 'boom bap', 'hardcore hip-hop', 'hip-hop 16076 r&b', 'new jack swing', 'soul 16077 pop 16078 rock', 'retro', 'british rock', 'uk', 'cover 16079 pop', 'trance', 'trip-hop', 'downtempo', 'art pop', 'nineties', 'dream pop', 'dance', 'house', 'electronic 16080 rock', 'pop', 'alternative rock 16081 r&b', 'soul 16082 r&b 16083 rap', 'battle rap 16084 pop', 'r&b', 'motown', 'soul pop', 'soul 16085 r&b', 'soundtrack', 'singer-songwriter', 'soul pop', 'soul 16086 pop', 'r&b', 'girl group', 'soul pop', 'soul 16087 rock', 'grunge', 'alternative rock 16088 pop', 'r&b', 'soul', 'soul pop 16089 rock', 'heartland rock', 'singer-songwriter', 'pop-rock 16090 rap 16091 rock', 'heartland rock', 'folk rock', 'singer-songwriter', 'nineties 16092 pop', 'rap', 'boom bap', 'hip-hop', 'funk 16093 r&b', 'new jack swing 16094 rap 16095 r&b 16096 rap', 'bass music 16097 pop 16098 rock', 'adult alternative', 'alternative rock', 'pop-rock', 'baroque pop', 'post-grunge 16099 pop 16100 rap 16101 country', 'bluegrass 16102 r&b 16103 pop', 'jamaica', 'dancehall 16104 r&b 16105 rap', 'east coast', 'comedy', 'boom bap 16106 country 16107 rock', 'alternative rock', 'pop-rock 16108 pop', 'lgbtq+', 'adult alternative', 'pop country 16109 r&b 16110 r&b 16111 pop', 'uk 16112 pop', 'r&b', 'funk', 'soul', 'soul pop 16113 pop 16114 pop 16115 rap 16116 pop 16117 rock', 'ballad 16118 rap', 'pop', 'r&b', 'nineties', 'adult contemporary', 'soul', 'soul pop 16119 pop 16120 rap 16121 rap', 'bay area', 'west coast 16122 pop 16123 pop', 'r&b', 'soul pop 16124 r&b 16125 pop 16126 pop', 'adult contemporary 16127 r&b', 'new jack swing', 'soul pop', 'soul', 'remix 16128 rap', 'gangsta rap', 'hardcore hip-hop', 'boom bap', 'east coast 16129 pop', 'r&b 16130 rap', 'chart history 16131 pop', 'rock', 'alternative rock', 'orchestral', 'ireland', 'electronic rock', 'soundtrack 16132 pop', 'disney 16133 pop', 'r&b', 'trip-hop', 'nineties', 'new jack swing 16134 rap', 'bay area', 'west coast 16135 r&b', 'atlanta 16136 r&b', 'pop', 'nineties', 'uk r&b', 'uk', 'easy listening', 'piano', 'ballad', 'adult contemporary', 'singer-songwriter', 'soundtrack', 'soul pop', 'soul 16137 rap', 'r&b', 'nineties', 'west coast 16138 rap', 'cloud rap', 'american underground', 'underground hip-hop', 'rapcore', 'hardcore hip-hop', 'horrorcore', 'west coast', 'trip-hop', 'hip-hop', 'trap 16139 pop 16140 rock', 'grunge', 'alternative rock 16141 rock', 'grunge', 'post-grunge', 'alternative rock 16142 pop', 'r&b', 'singer-songwriter', 'soul pop', 'soul 16143 r&b', 'dmv', 'alternative r&b', 'neo soul', 'funk', 'soul 16144 rap', 'conscious hip-hop', 'hip-hop', 'west coast 16145 pop', 'house', 'electro-funk', 'dance-pop', 'dance 16146 r&b 16147 rock 16148 country 16149 pop 16150 rap', 'battle rap 16151 rap 16152 pop', 'rock', 'nineties', 'uk', 'pop-rock', 'piano 16153 r&b 16154 r&b', 'pop', 'easy listening', 'adult contemporary', 'cover', 'soul', 'soul pop 16155 rap 16156 r&b', 'soul 16157 rap', 'east coast 16158 pop 16159 rock', 'britpop 16160 rock', 'pop', 'italo disco', 'electro-pop', 'dance-pop', 'disco', 'electro', 'alternative dance', 'uk', 'eighties', 'new wave', 'synth-pop 16161 pop 16162 rock', 'power pop', 'nineties', 'industrial rock', 'neo-psychedelia', 'psychedelic rock', 'noise rock', 'noise pop', 'indie rock', 'post-grunge', 'alternative rock', 'grunge 16163 rock 16164 rock', 'adult contemporary', 'alternative rock', 'roots', 'pop-rock 16165 rock', 'pop', 'producer', 'adult contemporary', 'singer-songwriter', 'blues rock', 'adult alternative', 'alternative', 'pop-rock 16166 rock', 'alternative rock', 'alternative metal', 'industrial metal', 'industrial rock 16167 pop', 'jamaica 16168 pop 16169 pop 16170 r&b', 'pop', 'pop rap', 'hip-hop', 'alternative r&b 16171 r&b 16172 r&b', 'rap 16173 rock', 'alternative rock 16174 pop', 'nineties', 'boy band', 'uk 16175 rap 16176 pop 16177 pop', 'adult alternative', 'pop-rock', 'adult contemporary 16178 r&b', 'soul 16179 country 16180 rap 16181 r&b', 'soul 16182 pop 16183 rock 16184 pop 16185 r&b', 'soul 16186 rap', 'pop', 'nu-jazz', 'jazz fusion', 'nineties', 'eurodance', 'electronic', 'dance 16187 rock 16188 rap', 'g-funk 16189 pop 16190 pop', 'r&b', 'soul', 'soul pop 16191 country 16192 pop 16193 r&b', 'pop', 'ballad', 'nineties', 'downtempo', 'soul', 'soul pop 16194 pop 16195 rock', 'grunge 16196 r&b', 'pop', 'soul pop', 'soul 16197 pop', 'r&b', 'soul', 'soul pop 16198 rock', 'alternative rock', 'folk rock 16199 r&b', 'soul pop', 'soul 16200 pop 16201 rap 16202 r&b 16203 rap', 'east coast', 'hip-hop 16204 pop 16205 pop 16206 r&b', 'pop', 'singer-songwriter', 'dance-pop', 'dance 16207 rap 16208 r&b 16209 country 16210 country 16211 pop 16212 rap', 'pop 16213 r&b', 'remix 16214 rap 16215 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 16216 r&b', 'pop', 'synth-pop', 'nineties', 'funk-pop', 'dance-pop 16217 pop', 'colombia', 'latin music', 'en español 16218 r&b', 'rap', 'hip-hop', 'west coast', 'gangsta rap 16219 rap', 'gangsta rap', 'west coast', 'g-funk 16220 rap', 'pop', 'house', 'eurodance', 'hip-hop', 'dance 16221 r&b', 'pop', 'nineties', 'soul', 'soul pop 16222 rock', 'alternative', 'alternative rock', 'adult alternative', 'blues rock', 'adult contemporary 16223 pop 16224 rap 16225 rap', 'dancehall 16226 rock 16227 r&b', 'pop', 'atlanta', 'cover', 'soul', 'soul pop 16228 rap', 'hip-hop', 'west coast 16229 rock 16230 rap', 'atlanta', 'conscious hip-hop', 'soul', 'conspiracy theory 16231 pop', 'folk pop', 'folk 16232 pop 16233 rock', 'art rock', 'alternative rock', 'industrial rock', 'electronic', 'industrial 16234 rock', 'hard rock 16235 rap 16236 pop', 'nineties', 'techno', 'euro house', 'eurodance', 'deutschland 16237 pop 16238 rap', 'hip-hop', 'boom bap', 'west coast 16239 pop 16240 pop', 'nineties 16241 pop', 'nineties', 'ballad 16242 rap 16243 rap 16244 rap', 'west coast', 'gangsta rap', 'g-funk 16245 rap', 'battle rap 16246 pop 16247 country', 'rock', 'canada', 'pop country', 'singer-songwriter', 'bluegrass 16248 rap', 'east coast', 'hip-hop 16249 rap', 'alternative', 'dance', 'hip-hop', 'disco 16250 pop', 'dance-pop', 'new jack swing', 'boy band 16251 r&b 16252 pop 16253 r&b', 'eighties', 'soul 16254 pop', 'rock', 'nineties', 'uk', 'adult contemporary', 'pop-rock 16255 r&b', 'dmv', 'cover', 'soul pop', 'alternative r&b', 'neo soul', 'soul 16256 pop', 'r&b', 'soul', 'soul pop 16257 rock', 'hard rock', 'alternative metal', 'grunge', 'alternative rock 16258 pop 16259 rock 16260 rap', 'bay area', 'west coast 16261 pop', 'r&b', 'electro-soul', 'dance-pop', 'nineties', 'dance', 'nu disco', 'eurodance 16262 rap 16263 pop 16264 r&b 16265 r&b', 'nineties 16266 pop', 'r&b', 'rap', 'east coast', 'hip-hop', 'new york', 'nineties', 'soul', 'soul pop 16267 rock', 'adult alternative', 'pop-rock', 'alternative rock', 'ballad', 'hard rock', 'post-grunge 16268 rap', 'france', 'french rap 16269 rap 16270 pop 16271 pop 16272 r&b 16273 r&b', 'pop', 'nineties 16274 pop 16275 pop 16276 pop 16277 rap 16278 pop', 'nineties', 'ballad 16279 rock', 'pop-rock 16280 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 16281 rap 16282 rap', 'atlanta 16283 rap 16284 pop', 'rock', 'piano', 'producer', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'ballad', 'pop-rock 16285 rock', 'alternative rock', 'new wave', 'power pop 16286 rap', 'g-funk', 'gangsta rap 16287 r&b', 'west coast', 'funk 16288 rap', 'r&b', 'girl group 16289 pop 16290 r&b 16291 pop', 'rock', 'post-grunge', 'emo', 'punk rock', 'pop-rock', 'marvel', 'disney', 'soundtrack', 'new wave 16292 rap', 'west coast', 'g-funk', 'gangsta rap 16293 pop', 'r&b', 'rock 16294 country', 'rock 16295 pop 16296 rock', 'memorial 16297 rap', 'boom bap', 'east coast', 'hip-hop 16298 rap', 'east coast 16299 r&b 16300 rap', 'west coast', 'g-funk', 'gangsta rap 16301 r&b', 'soul 16302 country 16303 rock', 'grunge 16304 rock', 'experimental rock', 'alternative rock 16305 rap', 'pop', 'disco 16306 pop 16307 rap 16308 pop', 'rock', 'piano rock', 'alternative', 'nineties', 'alternative rock', 'piano', 'ballad', 'adult alternative', 'adult contemporary', 'uk', 'memes', 'british rock', 'britpop 16309 rock', 'ballad', 'grunge 16310 rap 16311 pop 16312 pop 16313 pop 16314 pop 16315 rap', 'posse cut', 'east coast 16316 rock', 'nineties', 'grunge', 'art rock', 'alternative rock', 'adult alternative 16317 rap 16318 r&b', 'soul', 'neo soul 16319 rap 16320 pop 16321 rock 16322 pop 16323 rap 16324 rap 16325 r&b', 'nineties', 'soundtrack', 'cover', 'soul', 'soul pop 16326 pop 16327 rap', 'west coast 16328 pop', 'britpop', 'singer-songwriter', 'uk 16329 pop 16330 r&b 16331 pop', 'r&b', 'soul pop', 'soul 16332 pop 16333 pop', 'r&b', 'singer-songwriter', 'funk', 'soul pop', 'alternative r&b', 'neo soul', 'soul 16334 rap', 'west coast 16335 rap', 'hip-hop 16336 rap', 'west coast', 'g-funk', 'gangsta rap 16337 rock 16338 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 16339 rock', 'pop-rock', 'grunge', 'alternative rock 16340 rap 16341 rap', 'west coast', 'g-funk 16342 rock', 'nineties', 'alternative pop', 'alternative', 'post-grunge', 'electronic rock', 'gaming', 'alternative rock 16343 rap 16344 rap 16345 rock', 'canada', 'alternative rock 16346 rap 16347 pop', 'latin freestyle edm 16348 rock', 'alternative', 'britpop', 'british rock', 'uk', 'alternative rock 16349 rap 16350 r&b', 'bay area', 'nineties', 'soul 16351 rap', 'boom bap', 'industrial hip-hop', 'experimental hip-hop', 'abstract rap', 'experimental 16352 rap 16353 r&b', 'soul 16354 rap 16355 rock 16356 pop 16357 rap 16358 rap 16359 pop 16360 rock 16361 pop', 'reggaetón', 'puerto rico', 'latin music', 'latin urban', 'latin pop', 'en español 16362 pop 16363 rap', 'hip-hop', 'nineties', 'parody', 'comedy 16364 r&b 16365 rap', 'hardcore hip-hop', 'conscious hip-hop', 'funk', 'atlanta 16366 r&b', 'pop', 'ballad', 'nineties', 'singer-songwriter', 'soul pop 16367 rock', 'alternative rock', 'glam rock 16368 rock', 'blues rock 16369 rap 16370 rap', 'east coast', 'hip-hop 16371 rap', 'jazz rap', 'conscious hip-hop 16372 rock 16373 r&b', 'soul 16374 rap', 'west coast 16375 r&b 16376 pop 16377 pop', 'olympics', 'ballad', 'latin pop 16378 r&b 16379 r&b', 'pop', 'eighties', 'ballad', 'cover 16380 pop 16381 rap 16382 rap 16383 rap', 'atlanta 16384 rap 16385 rap', 'hip-hop', 'hardcore', 'east coast 16386 country', 'honky tonk', 'cover 16387 pop 16388 r&b', 'west coast', 'soul 16389 r&b', 'pop 16390 pop 16391 pop 16392 rap 16393 r&b 16394 rap 16395 pop', 'britpop', 'uk', 'singer-songwriter', 'dance 16396 r&b', 'soul 16397 rock', 'pop', 'mambo', 'salsa', 'pop-rock', 'uk 16398 rap', 'battle rap 16399 rap 16400 rock 16401 r&b', 'soul pop 16402 r&b', 'pop 16403 rock 16404 rock', 'grunge', 'alternative rock 16405 rap', 'posse cut 16406 rock 16407 r&b 16408 pop', 'folk 16409 rap', 'r&b', 'soul pop 16410 rock', 'deep house', 'house', 'electronic 16411 rap 16412 pop 16413 r&b', 'soul 16414 rock', 'alternative rock 16415 rap 16416 r&b', 'pop', 'rock', 'nineties', 'race / ethnicity', 'singer-songwriter', 'new jack swing', 'industrial rock', 'axé', 'dance-pop', 'politics', 'protest songs', 'pop-rock 16417 pop 16418 rock', 'pop 16419 rap', 'chart history 16420 r&b', 'rock', 'pop', 'soft rock', 'chill', 'house', 'swing', 'pop-rock', 'soul', 'funk', 'hip-hop', 'electronic 16421 pop', 'dance', 'electronic 16422 r&b', 'rap', 'nineties 16423 country', 'nineties', 'ballad 16424 r&b 16425 rap 16426 r&b 16427 rap', 'hip-hop', 'west coast 16428 pop', 'en español 16429 pop', 'nineties', 'dream pop', 'synth-pop', 'adult contemporary', 'easy listening 16430 rap 16431 rock', 'art rock', 'symphonic rock', 'orchestral', 'alternative rock 16432 rock', 'rap rock', 'hip-hop', 'experimental rock', 'alternative', 'alternative rock 16433 rock', 'pop', 'reggae rock', 'reggae', 'pop-rock 16434 pop 16435 r&b', 'soul 16436 r&b', 'deep house', 'freestyle', 'atlanta', 'memes 16437 pop', 'deutschland', 'eurodance', 'nineties', 'dance-pop 16438 pop', 'nineties', 'dance', 'latin pop', 'latin urban', 'latin music', 'en español 16439 r&b 16440 r&b', 'rap', 'east coast', 'hip-hop 16441 r&b', 'remix 16442 rock 16443 pop', 'r&b', 'soul', 'soul pop 16444 r&b', 'rap 16445 pop 16446 pop 16447 r&b 16448 rock', 'ballad', 'pop-rock', 'soul pop', 'adult alternative', 'blues rock', 'yacht rock', 'soundtrack', 'adult contemporary', 'easy listening 16449 rock', 'pop-rock', 'british rock', 'uk 16450 pop', 'latin music', 'latin pop', 'en español 16451 rap 16452 pop 16453 r&b', 'pop 16454 country 16455 rap', 'trip-hop', 'hip-hop', 'nineties', 'atlanta', 'dirty south 16456 rock', 'dance rock', 'alternative dance', 'noise pop', 'adult alternative', 'nineties', 'industrial rock', 'post-grunge', 'alternative pop', 'alternative', 'electronic rock', 'alternative rock', 'grunge', 'electronic 16457 r&b 16458 pop 16459 rap 16460 rap', 'hip-hop 16461 r&b', 'soul pop', 'soul', 'neo soul 16462 rap 16463 rap 16464 rap 16465 r&b', 'pop 16466 rap 16467 pop 16468 r&b', 'soul 16469 rock', 'uk', 'british rock', 'dance punk', 'alternative dance', 'alternative rock 16470 pop', 'rock', 'adult contemporary', 'ballad', 'easy listening', 'piano', 'pop-rock 16471 rock', 'art rock', 'grunge', 'post-grunge', 'alternative rock 16472 r&b', 'soul pop', 'soul 16473 rock', 'piano rock', 'nineties', 'alternative', 'alternative rock', 'ballad', 'piano', 'uk', 'britpop', 'british rock 16474 pop', 'r&b', 'singer-songwriter', 'soul jazz', 'soul pop', 'jazz', 'neo soul', 'soul 16475 pop', 'power pop', 'alternative rock 16476 pop', 'dance 16477 rap 16478 rap 16479 rap', 'g-funk', 'funk', 'west coast 16480 r&b 16481 rap 16482 pop', 'r&b', 'soul', 'soul pop 16483 pop', 'r&b', 'nineties 16484 rock', 'pop', 'producer', 'pop-rock 16485 rock 16486 r&b', 'rap', 'atlanta', 'dirty south 16487 rap', 'conscious hip-hop', 'boom bap', 'hardcore hip-hop', 'atlanta', 'dirty south 16488 pop 16489 rap 16490 rock', 'alternative rock 16491 pop 16492 pop', 'r&b', 'nineties', 'soul pop 16493 pop', 'dance', 'latin pop 16494 r&b', 'soul 16495 pop', 'r&b', 'girl group 16496 rap', 'boom bap', 'east coast 16497 rap 16498 pop 16499 rock', 'country', 'nineties', 'alternative', 'adult contemporary', 'alternative rock', 'adult alternative', 'singer-songwriter', 'producer 16500 pop', 'r&b', 'soul', 'soul pop 16501 r&b', 'soul 16502 pop 16503 rap', 'hip-hop', 'hardcore hip-hop', 'west coast', 'gangsta rap 16504 rap 16505 r&b', 'soul 16506 pop 16507 pop 16508 rap', 'r&b 16509 rap 16510 r&b', 'rap 16511 r&b', 'dmv', 'neo soul', 'soul', 'alternative r&b 16512 pop', 'electro-pop', 'trance', 'electronic 16513 r&b', 'rock', 'punk rock 16514 country 16515 rap', 'g-funk 16516 pop 16517 pop', 'r&b', 'rap', 'nineties', 'soul pop 16518 pop', 'blues 16519 pop', 'south africa 16520 rap 16521 rap 16522 r&b 16523 rap 16524 pop 16525 r&b', 'rap', 'cover', 'soul pop', 'soul 16526 rock 16527 pop', 'r&b', 'nineties', 'soul pop', 'adult contemporary', 'ballad', 'soul 16528 pop', 'pop-rock 16529 pop', 'rock', 'soft rock', 'pop-rock 16530 r&b', 'girl group 16531 r&b', 'cover', 'soul 16532 rap 16533 pop 16534 rock 16535 pop', 'house', 'dance 16536 pop', 'r&b', 'soul', 'soul pop 16537 pop', 'r&b', 'soundtrack', 'soul', 'soul pop 16538 rap', 'producer', 'gangsta rap', 'boom bap', 'east coast', 'nineties', 'hip-hop 16539 r&b', 'rap', 'west coast', 'g-funk 16540 rap', 'nineties', 'hip-hop', 'hardcore hip-hop', 'east coast 16541 rock', 'hard rock 16542 rap', 'r&b 16543 rock', 'experimental rock', 'alternative rock 16544 pop', 'latin freestyle edm 16545 rap', 'rock', 'christian rock', 'christian rap', 'christian 16546 rock', 'nineties', 'glam rock', 'hard rock', 'alternative rock 16547 rap 16548 pop', 'uk', 'soul pop 16549 country 16550 country 16551 rap', 'nineties', 'atlanta', 'dirty south 16552 rap', 'east coast 16553 rock', 'art rock', 'folk rock 16554 pop 16555 rock', 'pop', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'alternative rock', 'pop-rock 16556 pop 16557 rap', 'bay area', 'west coast 16558 rock', 'pop', 'pop-rock 16559 pop', 'ballad', 'latin pop 16560 rap 16561 r&b 16562 rap 16563 pop', 'nineties 16564 rap 16565 r&b', 'singer-songwriter', 'soul 16566 pop 16567 rap', 'battle rap 16568 rap 16569 rock', 'alternative rock 16570 pop', 'en español', 'christmas 16571 r&b', 'soul 16572 rock 16573 rap', 'detroit', 'hardcore hip-hop', 'hip-hop', 'horrorcore 16574 country', 'rock', 'pop country', 'canada', 'singer-songwriter', 'holiday 16575 country 16576 rap 16577 rap', 'news 16578 rap 16579 rap 16580 rap 16581 pop 16582 pop 16583 r&b 16584 pop', 'r&b', 'soul pop', 'soul 16585 rap', 'east coast', 'neo soul', 'hip-hop 16586 r&b 16587 r&b 16588 rock', 'breakbeat', 'dance', 'electronic', 'uk 16589 pop', 'dance', 'electronic 16590 pop', 'teen pop', 'nineties', 'girl group', 'uk 16591 rap', 'new york', 'east coast', 'hip-hop 16592 r&b', 'nineties', 'soul pop', 'neo soul', 'soul 16593 pop 16594 pop', 'electronic 16595 rap 16596 pop 16597 pop 16598 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 16599 rap', 'producer 16600 rap 16601 rap', 'hip-hop', 'hardcore hip-hop', 'remix', 'soundtrack', 'west coast', 'east coast 16602 rap 16603 rap', 'hip-hop', 'hardcore hip-hop', 'east coast 16604 pop 16605 pop', 'canada 16606 country 16607 pop 16608 pop', 'r&b', 'soul', 'girl group', 'soul pop 16609 pop 16610 rap', 'east coast 16611 rock 16612 rap 16613 rap', 'east coast', 'hip-hop', 'new york', 'nineties 16614 pop 16615 rock', 'dance rock', 'alternative rock 16616 pop', 'rock', 'electronic rock', 'ireland 16617 pop 16618 r&b 16619 rock', 'british rock', 'uk', 'alternative', 'trip-hop', 'alternative rock', 'industrial rock', 'synth rock 16620 rock 16621 r&b', 'pop', 'sports', 'soul', 'dance 16622 pop 16623 rock', 'alternative rock', 'post-grunge', 'pop-rock 16624 country 16625 country', 'rock', 'nineties', 'alternative country', 'alternative rock', 'americana', 'folk rock 16626 rock', 'pop', 'anime', 'alternative rock', 'australia', 'electronic rock', 'pop-rock 16627 r&b', 'new jack swing', 'uk 16628 rock 16629 r&b', 'soul pop 16630 rap', 'west coast', 'bay area 16631 pop 16632 rock', 'thrash metal', 'metal 16633 rap 16634 rap 16635 rap', 'west coast', 'gangsta rap 16636 pop 16637 pop 16638 rap', 'battle rap 16639 r&b', 'rap 16640 r&b', 'soul 16641 r&b', 'pop', 'soul 16642 r&b 16643 rap', 'east coast', 'jazz rap 16644 r&b', 'rap', 'g-funk 16645 rap 16646 rock', 'alternative rock', 'piano', 'orchestral 16647 pop 16648 pop 16649 pop', 'rock', 'adult contemporary', 'cover', 'ballad', 'memes 16650 pop', 'country', 'rock', 'alternative rock', 'adult contemporary', 'adult alternative', 'pop country', 'alternative country', 'pop-rock 16651 pop 16652 pop', 'indie pop', 'synth-pop', 'adult alternative', 'electro-funk', 'alternative dance', 'trip-hop 16653 r&b 16654 rap', 'east coast', 'hardcore hip-hop', 'hip-hop 16655 rap', 'dirty south', 'gangsta rap', 'hip-hop', 'hardcore hip-hop 16656 r&b 16657 r&b 16658 rap', 'progressive house', 'dance-pop', 'dance', 'trance', 'trip-hop', 'electronic 16659 rock 16660 pop 16661 country 16662 rap 16663 rap 16664 rock', 'soft rock', 'producer', 'alternative country', 'piano', 'adult alternative', 'adult contemporary', 'pop-rock', 'alternative pop', 'alternative rock', 'singer-songwriter 16665 rap', 'nineties', 'atlanta', 'dirty south 16666 rap 16667 rap', 'hip-hop', 'comedy 16668 pop 16669 r&b', 'rap 16670 rap', 'battle rap 16671 rap', 'nineties', 'funk-pop 16672 rock', 'ireland 16673 pop', 'rock', 'nineties', 'pop-rock', 'alternative rock 16674 rap 16675 rap', 'gangsta rap', 'west coast', 'east coast', 'remix', 'hip-hop', 'hardcore hip-hop 16676 pop 16677 rap', 'west coast', 'bay area 16678 rap', 'boom bap', 'east coast', 'producer 16679 rock', 'uk', 'trip-hop 16680 pop', 'dancehall', 'reggae 16681 pop', 'r&b 16682 rock', 'r&b', 'pop', 'nineties', 'singer-songwriter', 'new jack swing', 'funk', 'hi-nrg 16683 r&b', 'singer-songwriter', 'blues', 'funk', 'soul pop', 'soul 16684 pop 16685 rap 16686 rock', 'alternative rock', 'pop-rock 16687 pop', 'rock', 'alternative', 'alternative rock', 'british rock', 'uk', 'synth rock', 'synth-pop 16688 pop', 'r&b', 'girl group', 'soul', 'soul pop 16689 rap 16690 pop 16691 r&b', 'pop 16692 pop', 'nineties', 'girl group', 'uk 16693 pop', 'synth-pop 16694 pop 16695 rap 16696 pop', 'dance-pop 16697 rock', 'alternative rock', 'indie pop', 'adult alternative', 'indie rock 16698 pop 16699 pop 16700 pop', 'r&b', 'soul', 'soul pop 16701 rap 16702 pop 16703 r&b', 'pop', 'rap', 'east coast', 'memorial 16704 r&b 16705 rap', 'haiti 16706 pop 16707 country 16708 r&b 16709 rap 16710 pop 16711 pop 16712 rap', 'freestyle', 'covid-19', 'charity 16713 rap', 'soul', 'gangsta rap', 'hip-hop', 'hardcore hip-hop 16714 rap 16715 pop', 'country', 'nineties', 'pop country', 'ballad 16716 rap 16717 rap', 'freestyle', 'hip-hop', 'radio 16718 r&b', 'pop', 'boy band 16719 rap', 'east coast', 'west coast', 'hip-hop 16720 rock 16721 r&b 16722 rock', 'pop-rock', 'teen pop', 'nineties', 'adult alternative', 'adult contemporary', 'post-grunge', 'alternative rock 16723 rap 16724 rap 16725 r&b', 'pop 16726 pop 16727 pop 16728 rap 16729 pop 16730 pop', 'rock', 'alternative country', 'adult alternative', 'adult contemporary', 'folk', 'folk rock', 'ballad', 'pop-rock 16731 rock 16732 rock', 'pop', 'cover', 'indie rock', 'alternative rock 16733 r&b', 'pop 16734 pop 16735 r&b', 'pop', 'soul pop', 'soul 16736 r&b', 'pop', 'girl group 16737 rap', 'east coast 16738 rock', 'ireland 16739 pop 16740 pop', 'r&b', 'new jack swing', 'soul pop', 'soul', 'adult contemporary', 'funk', 'dance 16741 rap', 'pop rap', 'dirty south', 'funk', 'hip-hop 16742 pop 16743 r&b', 'rap 16744 r&b', 'rap 16745 rap', 'русский рейв (russian rave)', 'русский рэп (russian rap)', 'россия (russia) 16746 r&b 16747 rap', 'pop rap', 'east coast', 'producer 16748 pop', 'euro reggae', 'deutschsprachiger pop', 'deutschland 16749 pop 16750 rap 16751 r&b', 'soul 16752 pop 16753 r&b', 'pop', 'soul', 'soul pop 16754 rap 16755 r&b', 'pop', 'cover', 'soul', 'soul pop 16756 country 16757 pop', 'baroque pop', 'adult contemporary', 'ballad', 'nineties', 'girl group', 'uk 16758 rock', 'pop-rock 16759 rap 16760 rap 16761 pop 16762 pop', 'jamaica', 'dancehall 16763 pop', 'r&b', 'nineties', 'singer-songwriter', 'soul pop', 'soul 16764 rock 16765 pop 16766 r&b', 'soul 16767 pop 16768 r&b', 'pop', 'nineties', 'singer-songwriter', 'soul pop', 'trip-hop', 'downtempo 16769 pop 16770 r&b', 'adult contemporary', 'ballad', 'cover', 'soul pop', 'soul 16771 rap', 'west coast', 'gangsta rap 16772 rap', 'r&b', 'girl group 16773 pop', 'nineties', 'french pop', 'future house', 'electro house', 'electro', 'electro-pop', 'dance-pop', 'electro-funk', 'funk-pop', 'funk', 'france', 'electronic', 'dance', 'house 16774 r&b', 'pop 16775 r&b 16776 pop 16777 pop 16778 pop 16779 r&b', 'pop', 'jamaica', 'dancehall 16780 r&b 16781 pop', 'scandipop', 'nineties', 'house', 'memes', 'bubblegum pop', 'scandinavia', 'danmark 16782 rock', 'pop', 'adult alternative', 'adult contemporary', 'canada', 'pop-rock 16783 rap 16784 rap', 'r&b', 'neo soul', 'soul', 'soul pop 16785 rap 16786 rap 16787 r&b', 'soul', 'soul pop 16788 pop 16789 r&b', 'pop', 'neo soul', 'soul', 'soul pop 16790 country 16791 rock', 'folk rock', 'alternative rock 16792 rap', 'r&b 16793 rock', 'alternative rock', 'dance punk', 'dance rock', 'british rock', 'uk', 'punk rock', 'oi!', 'dance', 'memes 16794 pop 16795 rap 16796 r&b 16797 pop', 'synth-pop', 'electro-pop', 'electronic 16798 rap 16799 rap 16800 r&b', 'rap', 'soul', 'atlanta 16801 r&b', 'pop', 'soul pop', 'soul 16802 r&b', 'soul pop', 'soul 16803 rap', 'east coast 16804 pop', 'r&b', 'ballad', 'soul', 'soul pop 16805 pop', 'rock', 'nineties', 'art pop', 'alternative rock 16806 r&b 16807 country 16808 rock 16809 country 16810 r&b', 'pop 16811 pop 16812 country', 'rock', 'pop country 16813 pop', 'synth-pop', 'new wave 16814 r&b', 'neo soul 16815 rap 16816 r&b 16817 rock', 'pop', 'electronic', 'trip-hop 16818 rap', 'g-funk 16819 r&b', 'rap', 'alternative r&b 16820 pop', 'uk 16821 pop', 'dance', 'electronic 16822 pop 16823 country 16824 pop', 'trip-hop', 'ambient', 'electronic 16825 r&b', 'rap 16826 rap 16827 pop 16828 pop', 'rock', 'nineties 16829 r&b', 'soul pop', 'soul 16830 rap', 'hip-hop', 'nineties', 'new york', 'funk', 'east coast 16831 rap', 'east coast', 'hip-hop 16832 pop 16833 rap 16834 pop 16835 rap', 'east coast 16836 pop', 'uk', 'girl group 16837 pop 16838 pop', 'soundtrack', 'musicals 16839 r&b', 'pop', 'ballad', 'neo soul', 'soul pop', 'soul 16840 r&b', 'rap 16841 r&b', 'soul 16842 r&b 16843 rap', 'east coast 16844 pop', 'teen pop', 'dance-pop 16845 rap 16846 rap 16847 rap', 'east coast', 'hip-hop 16848 r&b 16849 pop 16850 rock', 'jungle', 'idm', 'alternative dance', 'british rock', 'nineties', 'industrial rock', 'electronic 16851 pop 16852 rock', 'folk rock', 'pop-rock', 'alternative rock 16853 country 16854 pop', 'jamaica', 'dancehall 16855 rap 16856 rock', 'heavy metal', 'metal 16857 rap', 'pop', 'r&b', 'remix 16858 rap', 'hip-hop 16859 rock', 'pop', 'soft rock', 'nineties', 'piano', 'adult contemporary', 'ballad', 'australia 16860 rock', 'alternative rock 16861 rap', 'g-funk 16862 country', 'rock', 'bluegrass', 'singer-songwriter 16863 rock', 'pop', 'adult alternative', 'cover', 'pop-rock 16864 rap', 'boom bap', 'east coast', 'hip-hop 16865 pop', 'rock', 'singer-songwriter', 'electronic', 'dark wave', 'alternative', 'alternative rock', 'trip-hop', 'chamber music', 'downtempo', 'british rock', 'uk', 'synth rock 16866 rap 16867 r&b', 'soundtrack', 'adult contemporary', 'ballad', 'nineties', 'soul pop', 'soul 16868 pop', 'r&b', 'soundtrack', 'soul pop 16869 pop', 'danmark', 'nineties', 'scandipop', 'scandinavia', 'bubblegum pop 16870 rap', 'west coast', 'hip-hop', 'hardcore hip-hop', 'gangsta rap', 'g-funk 16871 rap', 'gangsta rap', 'hip-hop', 'conscious hip-hop', 'west coast', 'remix 16872 r&b 16873 country 16874 pop 16875 country', 'pop 16876 rap 16877 r&b 16878 r&b', 'pop', 'nineties', 'singer-songwriter', 'dance-pop', 'house', 'dance 16879 country 16880 r&b 16881 rock', 'electro-industrial', 'acid', 'punk rock', 'breakbeat', 'electronic', 'uk 16882 rap', 'rock', 'reggae rock', 'trip-hop', 'punk rock', 'reggae', 'alternative rock', 'ska punk', 'ska 16883 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 16884 rap', 'horrorcore', 'christmas 16885 rap', 'discography 16886 pop', 'r&b', 'rap 16887 pop 16888 pop', 'ireland', 'new age 16889 pop 16890 pop 16891 rap', 'new york', 'east coast 16892 country', 'satire', 'seventies', 'holiday', 'christmas 16893 rap 16894 r&b 16895 pop', 'rap', 'r&b', 'soul pop', 'soul 16896 rock', 'adult alternative', 'neo-psychedelia', 'psychedelic rock', 'alternative rock', 'post-grunge', 'grunge 16897 rap 16898 rap 16899 pop 16900 r&b', 'rap 16901 r&b 16902 rap', 'hip-hop 16903 rap', 'posse cut', 'dirty south', 'hip-hop', 'gangsta rap', 'hardcore hip-hop 16904 r&b', 'pop', 'uk', 'girl group 16905 r&b', 'rap', 'beef 16906 rock', 'alternative rock', 'dance punk', 'dance rock', 'british rock', 'uk', 'punk rock', 'oi!', 'dance', 'memes 16907 country 16908 rap', 'haiti 16909 rap 16910 rap 16911 rap 16912 r&b', 'pop', 'cover', 'soul pop', 'soul 16913 pop 16914 rap', 'freestyle', 'france', 'french rap 16915 country 16916 r&b', 'pop', 'girl group', 'uk', 'screen 16917 rock', 'pop', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'canada', 'pop-rock 16918 r&b', 'memes 16919 pop 16920 pop', 'country', 'rock', 'nineties', 'easy listening', 'pop country', 'canada', 'adult contemporary', 'ballad', 'pop-rock 16921 country 16922 rap 16923 pop 16924 pop', 'lounge', 'drum & bass', 'trip-hop', 'electronic 16925 rock', 'pop', 'rockabilly', 'dance-pop', 'pop-rock 16926 r&b', 'electronic', 'dance', 'neo soul', 'soul pop 16927 r&b', 'pop 16928 rap 16929 r&b', 'rap 16930 r&b 16931 r&b 16932 pop', 'nineties', 'celtic', 'canada', 'adult contemporary', 'ballad', 'soundtrack 16933 pop', 'rap', 'funk', 'hip-hop', 'nineties', 'pop rap 16934 rock 16935 rock', 'pop 16936 country 16937 pop 16938 pop', 'nineties', 'dance-pop', 'teen pop', 'boy band 16939 r&b', 'rap', 'remix 16940 r&b', 'neo soul 16941 pop 16942 rock 16943 pop', 'r&b', 'neo soul', 'soul pop', 'soul 16944 pop 16945 pop 16946 pop', 'r&b', 'soul pop', 'soul 16947 r&b', 'girl group 16948 rap 16949 pop', 'nineties', 'electronica', 'baroque pop', 'adult contemporary', 'electro-pop', 'ballad', 'techno', 'ambient', 'electronic 16950 r&b', 'rap', 'alternative r&b', 'soul rap', 'hip-hop', 'gangsta rap', 'west coast 16951 rap 16952 r&b', 'rap 16953 pop', 'norge', 'norsk 16954 pop 16955 pop 16956 pop', 'country', 'nineties', 'pop country 16957 pop', 'rock', 'nineties', 'alternative', 'symphonic rock', 'uk', 'britpop', 'adult alternative', 'alternative rock', 'adult contemporary', 'pop-rock', 'british rock 16958 r&b', 'nineties', 'soul pop', 'soul', 'soundtrack', 'piano', 'easy listening', 'adult contemporary', 'ballad 16959 r&b', 'neo soul', 'soul 16960 rap', 'bass music', 'hip-hop 16961 rap', 'east coast', 'hip-hop 16962 r&b 16963 rap', 'hip-hop 16964 rap', 'cypher', 'anime', 'nerdcore 16965 rap', 'posse cut', 'east coast', 'gangsta rap', 'hardcore hip-hop', 'hip-hop 16966 rock', 'metal 16967 country 16968 r&b 16969 rock', 'adult alternative', 'post-grunge', 'alternative rock 16970 rap 16971 rap 16972 pop 16973 pop', 'nineties', 'dance-pop', 'boy band 16974 country 16975 rock 16976 pop 16977 r&b 16978 pop 16979 country 16980 country', 'cover 16981 pop 16982 pop', 'r&b', 'atlanta', 'soul pop', 'soul 16983 rap 16984 country 16985 pop 16986 pop 16987 rap 16988 pop 16989 r&b', 'pop', 'ballad 16990 rap 16991 rock', 'nineties', 'downtempo', 'trip-hop', 'dark wave', 'new wave', 'electro-pop', 'electronic rock', 'post-punk revival', 'synth punk', 'synth-pop', 'singer-songwriter', 'electronic', 'alternative rock 16992 country 16993 country', 'rock 16994 country 16995 r&b 16996 r&b', 'pop', 'soul pop', 'singer-songwriter', 'remix 16997 pop', 'latin pop', 'dance 16998 rock', 'adult alternative', 'indie rock', 'alternative rock', 'post-grunge', 'grunge 16999 pop 17000 pop', 'euro house', 'electronic', 'dance-pop', 'electro-pop', 'danmark 17001 pop 17002 r&b', 'pop', 'nineties', 'singer-songwriter', 'soul', 'soul pop 17003 pop', 'adult alternative', 'ballad', 'adult contemporary', 'piano', 'canada', 'pop-rock 17004 rap 17005 rap 17006 rock', 'pop', 'seventies', 'soundtrack', 'adult contemporary', 'cover', 'pop-rock 17007 pop 17008 r&b 17009 pop 17010 rap', 'r&b', 'pop', 'boy band', 'uk 17011 pop 17012 country 17013 r&b', 'rap', 'puerto rico', 'east coast', 'remix 17014 pop 17015 pop 17016 rap 17017 rap', 'r&b', 'singer-songwriter', 'soul pop', 'soul 17018 pop', 'motown', 'girl group', 'uk 17019 pop 17020 rap 17021 rap 17022 pop 17023 rap 17024 r&b', 'rap', 'soul pop 17025 pop', 'r&b', 'rap', 'underground hip-hop', 'hip-hop', 'nineties', 'soundtrack 17026 rock', 'piano', 'alternative rock 17027 pop', 'remix', 'nineties', 'dance-pop 17028 rap', 'atlanta', 'dirty south 17029 rock', 'industrial rock', 'gothic rock', 'electronic rock', 'alternative rock', 'electronic 17030 rock', 'cover', 'uk 17031 pop 17032 pop 17033 country 17034 rap', 'atlanta', 'east coast', 'dirty south 17035 rap 17036 rap 17037 pop', 'nineties', 'synth-pop', 'techno', 'dance-pop', 'dance', 'electronic 17038 r&b', 'rap', 'g-funk 17039 rap 17040 pop', 'girl group', 'korean', 'genius korea 17041 country 17042 r&b', 'neo soul', 'soul pop', 'soul 17043 pop 17044 pop', 'rock', 'art rock', 'psychedelic rock', 'psychedelic', 'album-oriented rock (aor)', 'uk', 'soft rock', 'singer-songwriter', 'seventies', 'acoustic', 'folk rock', 'adult contemporary', 'ballad', 'pop-rock 17045 rap 17046 r&b 17047 rap', 'gangsta rap', 'east coast', 'hip-hop 17048 pop', 'r&b', 'canada', 'soul', 'soul pop 17049 country 17050 pop', 'r&b', 'soul', 'soul pop 17051 pop', 'r&b', 'girl group', 'uk 17052 rap', 'east coast 17053 pop 17054 pop 17055 rap', 'nineties', 'alternative pop', 'hip-hop 17056 pop 17057 rap', 'hardcore hip-hop', 'gangsta rap', 'west coast', 'hip-hop 17058 country 17059 rap 17060 rap 17061 rap 17062 rap 17063 country 17064 pop 17065 r&b', 'pop', 'hip-hop', 'neo soul', 'soul pop', 'soul 17066 r&b', 'soul 17067 rap 17068 rap 17069 r&b', 'rap', 'singer-songwriter', 'remix', 'soul pop 17070 r&b 17071 pop', 'uk', 'hip-hop', 'alternative', 'electro-hop', 'electronica', 'breakbeat', 'electronic 17072 r&b', 'pop', 'soul pop', 'funk', 'soul 17073 r&b', 'soul', 'atlanta 17074 rap 17075 rap', 'east coast', 'hardcore hip-hop 17076 pop 17077 pop 17078 r&b 17079 pop', 'pop-rock', 'edm', 'dance-pop', 'electro-pop', 'electronic', 'dance 17080 pop 17081 pop 17082 rap', 'conscious hip-hop', 'hip-hop', 'boom bap', 'east coast 17083 pop', 'nu disco', 'dance-pop', 'dance', 'cover 17084 rock', 'alternative rock', 'nineties', 'symphonic rock', 'orchestral', 'glam rock', 'adult contemporary', 'hard rock', 'pop-rock', 'soundtrack', 'ballad 17085 r&b', 'pop', 'soul pop', 'neo soul', 'soul 17086 rap', 'west coast', 'gangsta rap', 'g-funk 17087 r&b', 'screen', 'soundtrack', 'neo soul 17088 r&b', 'nineties 17089 country 17090 r&b 17091 rock', 'alternative rock', 'post-grunge', 'hard rock 17092 rap 17093 r&b 17094 rap', 'hip-hop', 'east coast 17095 rap', 'hip-hop', 'west coast 17096 pop 17097 rock', 'pop', 'adult alternative', 'singer-songwriter', 'ballad', 'adult contemporary', 'alternative rock', 'pop-rock 17098 pop 17099 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast 17100 rock', 'alternative rock', 'pop-rock', 'adult alternative', 'canada 17101 r&b', 'rap', 'nineties', 'west coast 17102 r&b', 'pop 17103 r&b 17104 rock', 'piano', 'alternative rock 17105 rock', 'synth-pop', 'synth rock 17106 rap 17107 pop', 'r&b', 'rap', 'alternative pop', 'soul 17108 rap 17109 pop', 'r&b', 'rap', 'soul pop', 'soundtrack', 'east coast 17110 rap', 'hip-hop', 'nineties 17111 pop 17112 pop 17113 country 17114 pop', 'electro house', 'french pop', 'france', 'dance-pop', 'dance', 'electronic', 'house 17115 country', 'ballad 17116 rap', 'jamaica', 'patois 17117 pop', 'nineties', 'ballad', 'synth-pop 17118 r&b', 'singer-songwriter', 'soul', 'soul pop 17119 pop 17120 rap 17121 country 17122 pop', 'latin freestyle edm 17123 pop', 'r&b', 'soul pop', 'soul 17124 r&b', 'rap 17125 r&b', 'rap 17126 rock', 'nineties', 'pop-rock', 'adult alternative', 'synth rock', 'synth-pop', 'alternative rock 17127 rap 17128 rap', 'hardcore hip-hop', 'gangsta rap', 'west coast 17129 rap 17130 pop 17131 pop 17132 r&b', 'pop', 'singer-songwriter', 'soul 17133 rap', 'battle rap 17134 r&b', 'rap 17135 rap', 'pop rap', 'east coast 17136 rap 17137 pop 17138 pop 17139 pop', 'adult contemporary', 'pop-rock', 'canada', 'teen pop 17140 rap', 'r&b', 'nineties', 'hip-hop', 'piano', 'doo-wop', 'neo soul 17141 r&b', 'pop', 'soul', 'soul pop 17142 rock', 'nineties', 'alternative rock', 'folk rock', 'alternative country 17143 rap 17144 r&b', 'pop', 'uk', 'boy band 17145 pop', 'nineties', 'teen pop', 'dance-pop 17146 rap', 'country rap', 'hip-hop', 'gangsta rap 17147 pop', 'latin pop', 'house', 'dance 17148 pop 17149 pop 17150 pop', 'salsa', 'puerto rico', 'latin pop', 'en español', 'merengue 17151 pop 17152 pop', 'rock', 'nineties', 'soundtrack', 'teen pop', 'adult alternative', 'adult contemporary', 'ballad', 'pop-rock 17153 pop 17154 pop 17155 r&b', 'pop', 'gospel', 'soul', 'soul pop 17156 pop', 'country', 'rock', 'easy listening', 'pop-rock', 'adult contemporary', 'ballad 17157 rock', 'singer-songwriter', 'symphonic rock', 'nineties', 'adult alternative', 'baroque pop', 'ballad', 'pop-rock', 'adult contemporary', 'soundtrack', 'alternative rock 17158 rock 17159 pop', 'rock', 'scandipop', 'scandinavia', 'sverige', 'svensk rock', 'pop-rock', 'alternative rock 17160 pop', 'r&b', 'ballad', 'soul pop', 'soul 17161 rock', 'alternative rock 17162 rock 17163 pop', 'r&b', 'rap', 'nineties', 'soundtrack 17164 rock', 'pop', 'country', 'pop country', 'alternative country', 'blues rock', 'producer', 'singer-songwriter', 'pop-rock', 'adult alternative', 'adult contemporary 17165 pop', 'protest songs', 'folk', 'pop-rock 17166 rock', 'alternative rock 17167 rock', 'punk rock', 'pop-rock', 'pop-punk', 'alternative rock 17168 r&b', 'pop', 'boy band 17169 pop', 'rock', 'post-grunge', 'alternative rock 17170 country', 'rock 17171 country 17172 rock', 'pop', 'nineties', 'soft rock', 'cover', 'adult contemporary', 'adult alternative', 'australia', 'ballad', 'pop-rock 17173 country 17174 country 17175 country 17176 pop', 'r&b', 'nineties', 'gospel', 'soundtrack', 'soul pop', 'soul 17177 rock', 'funk rock', 'soul', 'adult alternative', 'producer', 'singer-songwriter', 'alternative rock 17178 country 17179 r&b', 'soul pop', 'ballad', 'neo soul', 'soul 17180 pop', 'rap', 'hip-hop', 'nineties', 'pop rap 17181 country 17182 pop', 'nineties', 'dance-pop', 'teen pop', 'boy band 17183 country 17184 country', 'rock 17185 pop', 'rock', 'canada', 'nineties', 'piano', 'singer-songwriter', 'ballad', 'adult contemporary', 'acoustic', 'pop-rock 17186 rock', 'nineties', 'adult contemporary', 'piano', 'adult alternative', 'alternative rock', 'pop-rock', 'power pop 17187 country 17188 rock', 'ireland 17189 pop 17190 rap', 'west coast', 'nineties', 'soul rap', 'hardcore hip-hop', 'protest songs', 'hip-hop', 'conscious hip-hop 17191 rock 17192 pop', 'r&b', 'rap 17193 rap', 'r&b', 'funk 17194 rock', 'alternative rock', 'skate punk', 'pop-punk', 'punk rock', 'nineties 17195 country 17196 pop', 'r&b', 'soul pop', 'soul', 'ballad', 'cover 17197 r&b', 'rap', 'conscious hip-hop', 'neo soul', 'atlanta', 'dirty south', 'funk 17198 rock', 'grunge', 'alternative rock 17199 pop', 'r&b', 'soul', 'soul pop 17200 country', 'bluegrass 17201 rap', 'christian 17202 country 17203 pop 17204 country 17205 pop', 'rock', 'nineties', 'pop-punk', 'pop-rock', 'alternative pop', 'alternative', 'alternative rock', 'punk rock 17206 country', 'ballad', 'pop country 17207 rock', 'experimental pop', 'experimental rock', 'rap rock', 'alternative rock 17208 pop 17209 rap', 'r&b', 'sports', 'nba', 'basketball 17210 country', 'ballad 17211 rap', 'soundtrack', 'funk', 'hip-hop 17212 pop 17213 country 17214 pop 17215 country 17216 country', 'pop', 'canada 17217 country 17218 country', 'pop', 'cover 17219 pop', 'rap', 'r&b', 'funk', 'dancehall', 'soundtrack 17220 rap', 'rock', 'east coast', 'blues rock', 'rap rock 17221 country 17222 pop', 'dance-pop', 'nineties', 'dance 17223 pop', 'girl group', 'uk 17224 rock', 'pop-rock', 'nineties', 'canada', 'alternative rock 17225 pop', 'r&b', 'soul', 'soul pop 17226 pop', 'r&b', 'funk', 'neo soul', 'soul pop', 'soul 17227 pop', 'rock', 'adult alternative', 'adult contemporary', 'pop-rock', 'ballad', 'post-grunge', 'alternative rock 17228 r&b 17229 pop', 'holiday', 'comedy 17230 pop 17231 pop 17232 rock', 'nineties', 'ska', 'reggae 17233 r&b', 'neo soul 17234 r&b', 'rap', 'nineties 17235 pop', 'r&b', 'gospel', 'christian', 'soundtrack 17236 country 17237 country', 'rock 17238 pop', 'country', 'pop country', 'singer-songwriter', 'canada', 'pop-rock 17239 r&b 17240 country 17241 country 17242 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 17243 r&b', 'pop', 'neo soul', 'soul pop', 'soul 17244 r&b', 'pop', 'boy band 17245 rap', 'west coast', 'dirty south', 'gangsta rap 17246 rap 17247 r&b 17248 rock', 'pop 17249 r&b', 'pop', 'ballad', 'cover 17250 pop', 'r&b', 'rap', 'singer-songwriter', 'soul', 'soul pop 17251 rock', 'pop 17252 rap', 'hip-hop', 'dirty south', 'bounce', 'gangsta rap 17253 country', 'nineties', 'pop country', 'ballad 17254 country 17255 rap 17256 country 17257 rock', 'adult alternative', 'adult contemporary', 'jazz fusion', 'blues rock', 'blues', 'alternative', 'alternative rock 17258 pop 17259 r&b 17260 pop', 'r&b', 'nineties 17261 r&b', 'rap', 'singer-songwriter', 'soul pop 17262 pop', 'ireland', 'nineties', 'bubblegum pop 17263 country 17264 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast 17265 pop 17266 country 17267 rap', 'nineties', 'hip-hop', 'comedy', 'hardcore hip-hop', 'horrorcore 17268 pop', 'rock', 'nineties', 'pop-punk', 'alternative pop', 'alternative', 'alternative rock', 'pop-rock 17269 rock', 'christian rock', 'post-grunge 17270 rock', 'industrial rock', 'industrial metal', 'alternative metal', 'cover', 'industrial', 'electronic rock 17271 country 17272 r&b', 'rap', 'east coast 17273 country 17274 country', 'rock 17275 rock', 'alternative dance', 'post-grunge', 'alternative rock', 'hockey', 'gaming', 'soundtrack 17276 r&b', 'neo soul 17277 r&b 17278 pop 17279 pop', 'pop-rock 17280 r&b', 'pop', 'rap', 'pop rap', 'new york', 'east coast 17281 r&b', 'rap 17282 pop 17283 country 17284 rock', 'baroque pop', 'piano', 'adult alternative', 'post-grunge', 'nineties', 'soft rock', 'alternative rock', 'post-punk 17285 country 17286 pop', 'uk', 'edm', 'alternative', 'alternative dance', 'dance', 'electronica', 'electronic 17287 pop 17288 pop', 'r&b', 'cover', 'soul', 'soul pop 17289 rap', 'east coast', 'hip-hop', 'hardcore hip-hop', 'producer 17290 pop', 'r&b', 'cover', 'soul 17291 r&b', 'rap 17292 country 17293 pop', 'r&b', 'soul pop', 'neo soul', 'soundtrack', 'soul 17294 r&b', 'pop', 'electronic', 'spoken word 17295 r&b', 'pop 17296 pop', 'rock', 'nineties', 'trip-hop', 'dark wave', 'new wave', 'alternative pop', 'electronic rock', 'electro-pop', 'electronic', 'synth punk', 'synth-pop', 'singer-songwriter', 'pop-rock', 'alternative rock 17297 r&b', 'soul pop 17298 country 17299 country 17300 pop 17301 r&b', 'rap', 'soundtrack', 'hip-hop 17302 pop 17303 pop 17304 country', 'ballad 17305 pop 17306 pop 17307 pop', 'r&b 17308 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast', 'hip-hop 17309 pop', 'r&b', 'soundtrack', 'neo soul', 'soul', 'soul pop 17310 rock', 'new wave', 'alternative rock 17311 country 17312 rock', 'pop-punk', 'ska punk', 'skate punk', 'alternative rock', 'nineties', 'ska', 'punk rock 17313 r&b', 'girl group 17314 pop 17315 pop', 'nineties', 'pop-rock', 'latin pop 17316 r&b 17317 pop', 'folk 17318 rap 17319 pop', 'country', 'rock', 'nineties', 'feminism', 'pop country', 'canada', 'singer-songwriter 17320 pop 17321 rap 17322 pop', 'ballad', 'nineties', 'soundtrack', 'teen pop', 'boy band 17323 rap', 'hardcore hip-hop', 'east coast', 'hip-hop 17324 pop', 'r&b', 'soul', 'soul pop 17325 pop', 'boy band 17326 country 17327 rock', 'nineties', 'alternative', 'alternative rock', 'pop-punk', 'post-grunge', 'punk rock 17328 pop', 'r&b', 'girl group 17329 country 17330 country 17331 pop', 'nineties', 'techno', 'house', 'electronic', 'dance 17332 pop', 'r&b', 'nineties', 'neo soul', 'funk', 'soul pop', 'dance', 'dance-pop 17333 country 17334 pop 17335 rap 17336 rap', 'east coast 17337 pop', 'r&b', 'nineties 17338 country 17339 r&b 17340 country 17341 rap 17342 country 17343 country 17344 r&b', 'pop', 'rap', 'pop rap', 'soundtrack', 'hip-hop 17345 rock', 'pop', 'nineties', 'ska punk', 'pop-rock', 'soundtrack', 'memes', 'pop-punk', 'alternative rock 17346 r&b', 'soul 17347 pop', 'nineties', 'bubblegum pop', 'teen pop 17348 pop', 'nineties', 'dance 17349 country 17350 r&b', 'pop', 'nineties', 'ballad', 'boy band 17351 r&b 17352 rock 17353 country 17354 rock', 'folk rock', 'cover', 'adult alternative', 'alternative rock 17355 r&b', 'neo soul', 'ballad', 'soul 17356 r&b', 'neo soul', 'soul pop', 'soul', 'ballad 17357 pop 17358 pop', 'rock', 'symphonic rock', 'nineties', 'orchestral', 'uk', 'pop-rock 17359 pop', 'country', 'ballad 17360 pop 17361 rock', 'blues rock', 'adult alternative', 'funk rock', 'alternative rock 17362 rock', 'pop-rock 17363 pop', 'dance', 'electronic', 'soundtrack 17364 country 17365 pop 17366 rap', 'r&b', 'hip-hop', 'neo soul 17367 rock', 'pop-rock 17368 r&b 17369 country', 'honky tonk', 'rockabilly', 'cover 17370 r&b', 'nineties 17371 country 17372 pop 17373 r&b', 'soul', 'soul pop 17374 rock', 'pop', 'pop-rock', 'ballad 17375 pop', 'r&b', 'nineties', 'ballad 17376 country', 'rock 17377 rap', 'chart history 17378 rap 17379 rap', 'hardcore hip-hop', 'gangsta rap', 'hip-hop', 'east coast 17380 rock', 'pop', 'nineties', 'uk', 'soundtrack', 'disney 17381 r&b', 'pop', 'nineties', 'teen pop', 'dance-pop 17382 pop 17383 pop', 'rock', 'easy listening', 'adult contemporary', 'pop-rock', 'singer-songwriter', 'chill 17384 pop 17385 rap 17386 r&b', 'pop', 'soul', 'soul pop 17387 rap', 'reggae', 'jamaica', 'dancehall 17388 pop', 'nineties', 'latin pop', 'latin music', 'en español 17389 rock 17390 country 17391 country 17392 rap 17393 r&b', 'pop', 'piano', 'ballad', 'soul', 'soul pop 17394 pop', 'nineties', 'boy band 17395 pop', 'r&b', 'rap', 'soul pop', 'soul 17396 rock', 'nineties', 'cover', 'soundtrack', 'alternative rock', 'funk rock 17397 rock', 'nineties', 'alternative rock', 'punk rock', 'pop-punk 17398 country', 'rock', 'pop country 17399 pop', 'jamaica 17400 country', 'pop 17401 rap', 'underground hip-hop', 'east coast', 'hip-hop 17402 pop', 'dance', 'electronic 17403 pop', 'r&b', 'soul pop', 'soul 17404 r&b', 'singer-songwriter', 'soul pop 17405 country', 'soundtrack 17406 r&b', 'pop 17407 r&b', 'rap 17408 rock', 'nineties', 'alternative rock', 'latin pop', 'méxico', 'latin rock', 'pop-rock 17409 rock', 'rap', 'rap rock', 'metal', 'alternative metal', 'rap metal', 'nu-metal 17410 country 17411 rap 17412 pop 17413 rock', 'post-rock', 'industrial rock', 'alternative rock', 'art rock 17414 pop', 'ballad', 'adult contemporary', 'latin pop', 'latin music 17415 pop', 'nineties', 'boy band', 'ballad 17416 country 17417 pop 17418 pop', 'nederland', 'nineties', 'electronic', 'dance-pop', 'eurodance', 'bubblegum pop 17419 r&b 17420 rap', 'pop', 'rock', 'nineties', 'alternative rock', 'trip-hop', 'indie pop', 'pop-rock 17421 country', 'nineties 17422 rap', 'posse cut', 'dirty south', 'gangsta rap', 'hip-hop', 'underground hip-hop 17423 r&b', 'nineties 17424 r&b', 'pop 17425 r&b', 'pop 17426 country 17427 pop 17428 pop', 'swing', 'dance-pop', 'deutschland', 'nineties', 'mambo', 'latin pop 17429 pop', 'r&b', 'soul', 'soul pop 17430 pop', 'r&b', 'producer', 'singer-songwriter', 'adult contemporary', 'ballad', 'soul pop', 'soul 17431 rap', 'screen', 'soundtrack', 'east coast 17432 country', 'soundtrack 17433 rock', 'noise rock', 'art-punk', 'art rock', 'post-punk', 'politics', 'australia 17434 pop 17435 rap', 'r&b', 'pop', 'nineties', 'dance-pop 17436 pop', 'soundtrack', 'ballad', 'latin pop 17437 pop', 'r&b', 'nineties', 'neo soul', 'funk', 'soul', 'soul pop 17438 country 17439 pop', 'cover', 'nineties 17440 rap 17441 pop', 'latin music', 'latin pop 17442 country 17443 rock', 'nu-metal', 'post-grunge', 'hard rock', 'christian rock', 'alternative rock 17444 country 17445 pop', 'bubblegum pop', 'dance-pop', 'teen pop 17446 rock', 'electronica', 'electronic', 'trip-hop 17447 pop', 'nineties', 'dance-pop', 'teen pop 17448 pop', 'pop-rock', 'dance-pop', 'boy band 17449 rap', 'posse cut', 'dirty south', 'hip-hop', 'gangsta rap 17450 rap 17451 rap 17452 rock 17453 pop 17454 r&b', 'rap 17455 pop', 'r&b', 'ballad', 'soul', 'soul pop 17456 pop', 'r&b', 'hip-hop 17457 pop', 'r&b', 'soul', 'soul pop 17458 country 17459 country 17460 pop 17461 pop 17462 rock 17463 rap', 'g-funk', 'gangsta rap', 'west coast', 'hip-hop', 'hardcore hip-hop 17464 r&b', 'pop 17465 pop', 'dance-pop', 'latin pop', 'dance 17466 pop', 'soul', 'ballad 17467 country 17468 country 17469 rock', 'nineties', 'adult alternative', 'alternative rock 17470 country 17471 rock', 'alternative rock', 'hard rock', 'post-grunge 17472 country 17473 pop', 'easy listening', 'adult contemporary', 'australia', 'ballad 17474 r&b 17475 country', 'rock 17476 country', 'ballad', 'singer-songwriter 17477 r&b', 'rap', 'funk', 'alternative r&b', 'comedy', 'east coast 17478 pop', 'r&b', 'singer-songwriter', 'soul pop 17479 r&b 17480 pop 17481 pop', 'r&b', 'rock 17482 rap', 'east coast 17483 rap', 'east coast', 'hip-hop 17484 rock', 'post-hardcore', 'rap metal', 'alternative metal', 'metal', 'funk rock 17485 rap', 'country', 'rock', 'rap rock', 'country rap 17486 rock', 'pop', 'pop-rock', 'alternative rock', 'nineties 17487 rap 17488 country', 'pop country 17489 r&b 17490 pop', 'country', 'nineties', 'pop country', 'adult contemporary', 'ballad 17491 pop 17492 rock', 'alternative pop', 'indie pop', 'indie', 'indie rock', 'adult alternative', 'alternative rock', 'pop-rock 17493 pop', 'adult contemporary 17494 country 17495 pop', 'r&b', 'soul pop', 'soul 17496 country 17497 rap', 'battle rap 17498 rock 17499 pop', 'bubblegum pop 17500 pop', 'latin pop', 'dance-pop 17501 pop', 'rock', 'orchestral', 'piano', 'ballad', 'uk', 'gospel', 'pop-rock 17502 country', 'nineties 17503 r&b 17504 r&b', 'rap', 'remix 17505 r&b', 'pop', 'soul', 'teen pop 17506 country', 'ballad', 'bluegrass 17507 country', 'ballad 17508 rock', 'nineties', 'soundtrack', 'adult alternative', 'pop-rock', 'post-grunge', 'alternative rock 17509 rap', 'türkçe çeviri 17510 rap', 'hardcore hip-hop', 'east coast', 'hip-hop', 'beef 17511 rock 17512 pop', 'r&b', 'electronic 17513 rap', 'soundtrack', 'gangsta rap', 'west coast 17514 rock', 'nineties', 'alternative', 'punk rock', 'alternative rock', 'pop-punk 17515 pop', 'dance-pop', 'latin pop 17516 rock', 'alternative metal', 'nu-metal 17517 rap', 'hip-hop 17518 pop 17519 rap', 'trap 17520 r&b', 'soul pop', 'soul', 'atlanta 17521 pop', 'euro house', 'house', 'dance-pop', 'nineties', 'electronic', 'dance', 'italy', 'memes 17522 r&b', 'pop', 'nineties', 'ballad', 'singer-songwriter', 'soul pop 17523 rap', 'gangsta rap 17524 r&b', 'rap', 'neo soul', 'funk 17525 r&b', 'singer-songwriter', 'soul pop 17526 r&b', 'nineties 17527 country 17528 pop', 'christmas', 'canada 17529 pop', 'rock', 'nineties', 'screen', 'alternative', 'electronic rock', 'art pop', 'alternative rock', 'soundtrack 17530 pop', 'r&b', 'nineties 17531 pop 17532 pop 17533 rap', 'россия (russia)', 'deutschsprachiger rap', 'deutschland 17534 pop', 'christmas 17535 pop', 'boy band', 'bubblegum pop', 'holiday', 'christmas 17536 r&b', 'pop', 'boy band 17537 country 17538 r&b', 'ballad 17539 pop 17540 rap', 'gangsta rap', 'east coast 17541 r&b', 'pop', 'nineties', 'holiday', 'christmas 17542 rap 17543 r&b', 'soul', 'ballad', 'soundtrack 17544 pop 17545 country', 'cover 17546 rap', 'east coast 17547 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast 17548 rock', 'alternative rock 17549 pop', 'r&b 17550 pop', 'rock', 'alternative rock 17551 rap 17552 rap', 'gangsta rap', 'g-funk', 'west coast 17553 r&b', 'funk', 'soul pop', 'neo soul', 'soul 17554 country 17555 pop', 'adult contemporary', 'dance-pop', 'teen pop', 'boy band 17556 country 17557 pop', 'r&b', 'hip-hop', 'dance-pop 17558 pop', 'dance-pop', 'latin reggae', 'latin pop 17559 pop', 'nineties', 'ballad', 'teen pop 17560 country', 'rock', 'singer-songwriter 17561 country 17562 country 17563 pop 17564 r&b', 'soundtrack', 'soul 17565 pop 17566 country 17567 country 17568 rap 17569 r&b', 'pop', 'nineties', 'pop-rock', 'neo soul', 'soul pop', 'soul', 'méxico', 'latin pop 17570 r&b', 'rap', 'nineties 17571 r&b', 'rap', 'christian', 'christian r&b', 'christian rap', 'east coast', 'gospel', 'hip-hop', 'nineties', 'new york', 'religion 17572 rock', 'alternative rock 17573 rock', 'hard rock', 'orchestral', 'art rock', 'symphonic metal', 'heavy metal', 'metal 17574 pop', 'rap', 'hip-hop', 'nineties', 'pop rap 17575 rap 17576 country', 'pop', 'electro-pop', 'soundtrack', 'cover 17577 country', 'rock 17578 r&b', 'soul 17579 pop', 'dance-pop', 'teen pop 17580 rap', 'posse cut', 'gangsta rap', 'dirty south', 'hip-hop', 'bounce 17581 rap', 'r&b 17582 pop', 'r&b', 'neo soul', 'soul', 'soul pop 17583 country 17584 rap 17585 pop', 'latin pop', 'latin music 17586 r&b', 'rap', 'west coast', 'gangsta rap', 'hardcore hip-hop', 'alternative r&b', 'hip-hop 17587 rap', 'beef', 'gangsta rap', 'hardcore hip-hop', 'east coast 17588 rap', 'hip-hop', 'dirty south', 'g-funk 17589 r&b', 'pop', 'soul', 'soul pop 17590 r&b', 'pop', 'dance-pop 17591 country 17592 rap', 'new york 17593 pop 17594 pop 17595 country 17596 r&b 17597 r&b', 'singer-songwriter', 'soul', 'neo soul 17598 rock 17599 country', 'rock 17600 pop', 'country', 'pop country', 'adult contemporary', 'dance-pop 17601 country 17602 country 17603 pop', 'r&b', 'soundtrack 17604 pop', 'r&b', 'dance-pop', 'soul pop', 'soul 17605 rap', 'rock', 'nu disco', 'rap rock', 'alternative rock 17606 r&b', 'singer-songwriter', 'soul', 'soul pop 17607 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 17608 pop 17609 pop 17610 country 17611 r&b', 'rap', 'east coast', 'hip-hop 17612 r&b', 'soul', 'neo soul 17613 rock 17614 r&b', 'nineties', 'singer-songwriter', 'soul 17615 r&b', 'pop', 'christian', 'gospel', 'soul', 'soul pop 17616 pop 17617 r&b 17618 pop', 'house', 'dance-pop', 'latin pop 17619 r&b', 'pop 17620 country 17621 country', 'pop country 17622 pop 17623 pop', 'dance-pop 17624 pop', 'ballad', 'ireland', 'boy band 17625 pop', 'pop-rock 17626 pop', 'nederland', 'nineties', 'electronic', 'trance 17627 pop 17628 rock', 'alternative', 'post-grunge', 'alternative rock 17629 country', 'honky tonk 17630 pop', 'cover 17631 rap 17632 pop 17633 pop 17634 pop', 'rock', 'trip-hop 17635 r&b', 'rap', 'singer-songwriter 17636 pop', 'r&b', 'soul pop', 'soul 17637 rap 17638 pop 17639 pop', 'dance-pop', 'teen pop 17640 rap', 'hip-hop', 'dirty south', 'east coast', 'producer 17641 rock', 'alternative rock 17642 r&b', 'ballad', 'producer', 'neo soul', 'singer-songwriter', 'soul 17643 rap', 'east coast', 'latin urban 17644 rock', 'adult alternative', 'pop-rock', 'alternative rock 17645 r&b', 'singer-songwriter', 'neo soul', 'soul 17646 country 17647 pop 17648 pop 17649 rock', 'pop', 'adult contemporary', 'uk', 'ballad', 'pop-rock 17650 rap', 'chart history 17651 rap', 'hip-hop', 'hardcore hip-hop 17652 pop', 'r&b', 'soul', 'soul pop', 'atlanta 17653 pop', 'memes', 'dance-pop', 'teen pop', 'boy band 17654 rock', 'adult alternative', 'pop-rock', 'alternative rock 17655 country 17656 rock', 'folk rock', 'neo-psychedelia', 'art rock', 'post-punk', 'post-grunge', 'grunge', 'alternative rock 17657 pop', 'r&b', 'nineties 17658 country 17659 country', 'pop country', 'easy listening', 'adult contemporary', 'ballad 17660 rock', 'nu-metal', 'memes', 'christian', 'christian rock', 'alternative metal', 'hard rock', 'post-grunge 17661 rock', 'hard rock 17662 country', 'singer-songwriter 17663 country 17664 rock', 'pop 17665 r&b', 'soundtrack', 'singer-songwriter', 'funk', 'soul', 'soul pop 17666 pop 17667 rap', 'posse cut', 'dirty south', 'gangsta rap', 'hardcore hip-hop', 'hip-hop 17668 pop', 'dance-pop', 'boy band 17669 pop', 'country', 'ballad', 'soundtrack', 'christian pop', 'pop country 17670 rap', 'hip-hop', 'hardcore hip-hop', 'g-funk', 'west coast', 'gangsta rap', 'memes 17671 r&b 17672 r&b', 'rap', 'g-funk 17673 pop 17674 pop 17675 pop 17676 pop', 'latin pop', 'latin music', 'en español 17677 country 17678 pop 17679 country 17680 pop 17681 r&b', 'pop', 'dance', 'soundtrack 17682 r&b', 'pop', 'teen pop 17683 pop 17684 r&b', 'pop', 'nineties', 'latin pop 17685 country 17686 r&b', 'pop 17687 rap', 'r&b', 'pop', 'singer-songwriter', 'soul pop 17688 country 17689 r&b', 'ballad', 'soul 17690 pop 17691 pop 17692 country 17693 rap 17694 pop', 'rock', 'pop-rock', 'ska 17695 pop', 'teen pop', 'dance-pop 17696 r&b', 'pop 17697 pop', 'rap', 'neo soul', 'conscious hip-hop', 'west coast 17698 rap', 'west coast', 'gangsta rap 17699 rock', 'adult alternative', 'power pop', 'post-grunge', 'alternative rock 17700 rock', 'post-grunge', 'pop-rock', 'psychedelic rock', 'adult alternative', 'alternative rock', 'grunge 17701 rap 17702 pop 17703 pop', 'house', 'disco 17704 pop 17705 country 17706 rap', 'east coast 17707 country 17708 pop 17709 rap 17710 rap', 'memes', 'calypso', 'breakbeat', 'soca 17711 rock', 'adult alternative', 'nineties', 'alternative rock 17712 rap', 'rock', 'mental health', 'rap rock', 'metal', 'alternative metal', 'alternative rock', 'nu-metal 17713 rap', 'pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop 17714 r&b', 'rap 17715 r&b 17716 pop', 'r&b', 'teen pop', 'dance-pop 17717 rap', 'pop', 'r&b 17718 rap', 'alternative', 'chicago rap', 'hip-hop', 'underground hip-hop 17719 pop 17720 country', 'rock 17721 pop 17722 rap 17723 pop', 'house', 'electronic', 'dance 17724 pop', 'teen pop', 'dance-pop 17725 rock', 'pop-rock', 'album-oriented rock (aor) 17726 pop 17727 r&b', 'pop', 'dance-pop 17728 rap', 'hip-hop', 'hardcore hip-hop', 'dirty south 17729 rap', 'screen', 'soundtrack', 'east coast 17730 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 17731 r&b', 'neo soul', 'soul 17732 rap', 'soundtrack', 'hip-hop 17733 pop', 'latin pop 17734 r&b', 'rap', 'singer-songwriter', 'neo soul', 'soul', 'soul pop 17735 r&b', 'pop', 'soul pop 17736 r&b', 'singer-songwriter', 'soul pop', 'soul 17737 pop 17738 pop 17739 country 17740 country 17741 r&b', 'christian r&b', 'christian', 'soul', 'gospel 17742 rap', 'detroit', 'hip-hop', 'producer', 'hardcore hip-hop 17743 pop 17744 rock', 'alternative rock 17745 country 17746 pop', 'boy band 17747 pop', 'memes', 'techno', 'electronic 17748 rock', 'adult alternative', 'alternative rock', 'pop-rock 17749 country 17750 country 17751 country', 'pop', 'ballad', 'pop country', 'soundtrack 17752 pop', 'ireland 17753 pop 17754 rap', 'dirty south', 'hardcore hip-hop', 'gangsta rap', 'hip-hop 17755 r&b', 'soul', 'neo soul 17756 rock 17757 rap 17758 pop 17759 pop 17760 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 17761 r&b 17762 country', 'rock 17763 r&b', 'pop', 'teen pop', 'ballad', 'adult contemporary', 'neo soul', 'soul pop', 'soul', 'boy band 17764 rap', 'pop', 'r&b', 'singer-songwriter', 'soul pop', 'soul 17765 r&b', 'pop', 'funk', 'soul pop', 'soul 17766 country', 'singer-songwriter', 'piano 17767 rap', 'dirty south 17768 pop', 'r&b', 'dance-pop 17769 pop', 'latin music 17770 pop', 'rap 17771 rock', 'pop-rock', 'ireland', 'alternative rock', 'adult alternative', 'adult contemporary 17772 r&b', 'pop', 'rap', 'haiti', 'soul', 'soul pop 17773 country 17774 pop', 'ballad', 'boy band 17775 country', 'singer-songwriter 17776 r&b', 'neo soul 17777 rap', 'gangsta rap', 'east coast', 'hip-hop 17778 rock', 'pop', 'soft rock', 'adult alternative', 'alternative rock', 'ballad', 'adult contemporary', 'pop-rock 17779 pop', 'r&b', 'rap', 'patois', 'hip-hop', 'reggae', 'jamaica', 'dancehall 17780 country 17781 country 17782 rock', 'alternative rock 17783 country 17784 country 17785 rap', 'east coast 17786 rock', 'alternative rock', 'alternative pop', 'indie rock 17787 rock', 'alternative rock', 'ballad', 'post-grunge 17788 r&b 17789 pop 17790 pop', 'r&b', 'rap', 'hip-hop', 'jamaica', 'dancehall', 'ragga', 'reggae 17791 rock', 'pop 17792 r&b', 'singer-songwriter', 'soul pop 17793 r&b', 'ballad', 'cover', 'neo soul', 'soul 17794 country 17795 rap', 'traduction française 17796 pop', 'r&b', 'hip-hop', 'teen pop 17797 r&b', 'pop', 'rap', 'indie rap', 'pop rap', 'alternative', 'atlanta', 'soul', 'dirty south', 'memes', 'soul pop 17798 rap', 'nu-metal', 'experimental hip-hop', 'trap metal', 'experimental 17799 rap 17800 pop 17801 r&b', 'ballad', 'producer', 'neo soul', 'singer-songwriter', 'soul 17802 rock', 'soul', 'producer', 'singer-songwriter', 'alternative rock', 'pop-rock 17803 country 17804 pop 17805 rap 17806 rock 17807 r&b', 'soul pop', 'soul', 'neo soul 17808 r&b', 'rap', 'electronic 17809 pop 17810 rap 17811 rock', 'pop 17812 pop', 'dance-pop', 'teen pop', 'electro-pop 17813 pop', 'folktronica', 'indie pop', 'uk', 'piano', 'adult contemporary', 'adult alternative', 'singer-songwriter', 'pop-rock 17814 pop 17815 pop 17816 pop', 'rock', 'alternative pop', 'alternative', 'electronica', 'alternative rock 17817 pop', 'r&b', 'soul pop', 'soul 17818 pop', 'r&b 17819 pop 17820 r&b', 'soul pop', 'adult contemporary', 'screen', 'soundtrack', 'neo soul', 'soul 17821 country 17822 country', 'pop', 'folktronica', 'pop country', 'pop-rock', 'electronica', 'folk pop', 'folk', 'dance', 'electronic 17823 r&b', 'soul pop', 'soul', 'hip-hop 17824 r&b', 'neo soul', 'soul 17825 pop 17826 pop 17827 rap', 'dirty south', 'hip-hop', 'hardcore hip-hop 17828 rap 17829 r&b', 'neo soul', 'soul 17830 pop', 'boy band 17831 pop 17832 country 17833 r&b', 'soul pop', 'soul', 'atlanta 17834 country 17835 country 17836 country', 'singer-songwriter 17837 rap', 'east coast 17838 r&b', 'rap', 'east coast', 'hip-hop 17839 rap 17840 rock', 'christmas 17841 pop 17842 country', 'rock', 'ballad 17843 rap', 'underground hip-hop', 'hardcore hip-hop', 'hip-hop', 'gangsta rap', 'west coast 17844 r&b', 'chill', 'jamaica', 'dance', 'reggae 17845 r&b', 'pop', 'soul', 'soul pop 17846 r&b 17847 country', 'holiday', 'ballad', 'soundtrack', 'christmas 17848 r&b', 'pop', 'dance-pop 17849 pop', 'rap', 'r&b', 'soul pop', 'remix', 'screen', 'soundtrack', 'neo soul', 'soul 17850 rock', 'rap', 'nineties', 'rap rock 17851 pop', 'funk', 'nu disco', 'french pop', 'house 17852 pop', 'dance 17853 r&b 17854 pop', 'rock', 'piano', 'ballad', 'adult contemporary', 'adult alternative', 'singer-songwriter', 'folk pop', 'folk', 'british folk', 'uk', 'soft rock', 'pop-rock', 'trip-hop 17855 r&b', 'pop', 'soul pop 17856 pop', 'r&b', 'uk', 'uk r&b', 'soul jazz', 'singer-songwriter', 'ballad', 'adult contemporary', 'smooth jazz', 'soul pop', 'jazz', 'soul 17857 pop 17858 country', 'ballad', 'soft rock 17859 rap', 'dirty south 17860 rock', 'alternative rock', 'hard rock 17861 rock', 'alternative', 'alternative rock 17862 country', 'pop 17863 pop', 'folk', 'pop-rock 17864 rap', 'r&b', 'neo soul', 'soul 17865 pop 17866 pop', 'r&b', 'singer-songwriter', 'soul pop', 'soundtrack 17867 rap', 'scandinavia', 'danmark', 'electronic', 'remix 17868 country', 'rock 17869 country 17870 pop', 'ragga 17871 rap', 'hardcore hip-hop', 'east coast 17872 pop', 'dance-pop 17873 rock', 'ballad', 'indie rock', 'alternative', 'pop-rock', 'adult alternative', 'post-grunge', 'alternative rock 17874 r&b', 'singer-songwriter', 'soul pop', 'neo soul', 'soul 17875 rock', 'alternative', 'alternative metal', 'alternative rock', 'nu-metal 17876 pop', 'producer', 'electro-pop', 'electro house', 'france', 'dance', 'electronic', 'house 17877 r&b', 'pop 17878 pop', 'dance-pop', 'boy band 17879 rock 17880 pop', 'australia 17881 rock', 'adult alternative', 'pop-rock', 'acoustic', 'alternative rock 17882 pop', 'r&b', 'neo soul', 'soul', 'soul pop 17883 r&b', 'soul pop 17884 pop 17885 pop', 'rap', 'pop rap', 'hip-hop 17886 r&b', 'soul pop', 'soundtrack 17887 pop 17888 pop', 'uk 17889 pop 17890 r&b', 'pop', 'folk', 'canada 17891 r&b', 'pop', 'rap', 'atlanta', 'soul', 'dirty south', 'soul pop 17892 rap', 'producer', 'beef 17893 country 17894 rap', 'memphis', 'dirty south 17895 rap', 'east coast 17896 r&b', 'soul', 'neo soul', 'soul pop 17897 country', 'rock', 'singer-songwriter', 'chill', 'adult contemporary', 'pop-rock', 'pop country 17898 rock', 'post-britpop', 'ballad', 'adult alternative', 'adult contemporary', 'uk', 'alternative rock', 'alternative 17899 country', 'honky tonk 17900 country', 'rock 17901 pop 17902 pop', 'r&b', 'singer-songwriter', 'dance-pop', 'dance 17903 r&b', 'rap 17904 r&b', 'producer', 'soul pop', 'soul', 'singer-songwriter 17905 pop 17906 country 17907 pop', 'rock', 'piano rock', 'piano', 'baroque pop', 'pop-rock', 'adult contemporary', 'soft rock', 'adult alternative', 'ballad 17908 country 17909 rap 17910 pop', 'rap', 'dance-pop', 'dance', 'alternative 17911 rap', 'hip-hop', 'posse cut', 'gangsta rap', 'hardcore hip-hop', 'west coast 17912 pop 17913 rap', 'pop', 'r&b', 'soul', 'funk', 'hip-hop 17914 pop', 'r&b', 'dance-pop 17915 country', 'rock', 'ballad 17916 pop 17917 r&b', 'soul 17918 r&b', 'rap', 'remix', 'hip-hop 17919 pop', 'r&b 17920 r&b', 'pop', 'soul pop', 'soul', 'neo soul 17921 country 17922 rock 17923 r&b 17924 country 17925 pop', 'bolivia', 'en español 17926 pop 17927 r&b', 'pop', 'rap', 'soul', 'hip-hop', 'soundtrack', 'cover', 'musicals 17928 r&b 17929 country 17930 rock', 'alternative rock', 'nu-metal', 'alternative metal 17931 r&b', 'rap 17932 r&b', 'rap', 'west coast', 'soul rap', 'gangsta rap', 'hip-hop', 'hardcore hip-hop', 'remix 17933 country', 'cover', 'ballad 17934 country', 'rock', 'singer-songwriter 17935 rap 17936 rock', 'alternative metal', 'rap rock', 'alternative rock', 'nu-metal 17937 pop 17938 country 17939 pop 17940 pop', 'teen pop', 'bubblegum pop 17941 rock', 'pop-rock', 'alternative rock 17942 country', 'pop country', 'ballad', 'adult contemporary 17943 rock 17944 pop', 'electro-pop', 'synth-pop', 'electronic 17945 pop', 'r&b', 'neo soul', 'soul pop', 'soul 17946 pop', 'r&b', 'soul pop', 'soul 17947 r&b', 'rap', 'hardcore hip-hop', 'east coast 17948 pop 17949 pop', 'ireland 17950 pop', 'rock', 'electronica', 'folk', 'glitch', 'downtempo', 'british rock', 'uk 17951 pop 17952 r&b', 'singer-songwriter', 'soul pop 17953 rap 17954 r&b', 'pop', 'teen pop', 'soundtrack 17955 rock', 'alternative', 'alternative rock 17956 pop', 'country', 'soft rock', 'ballad', 'soundtrack 17957 pop', 'boy band 17958 r&b', 'rap 17959 rap', 'east coast 17960 rock', 'alternative pop', 'adult alternative', 'neo-psychedelia', 'college rock', 'alternative rock', 'pop-rock 17961 country', 'rock', 'ballad 17962 pop', 'dance-pop', 'electro-pop', 'electronic', 'boy band 17963 rap', 'g-funk', 'underground hip-hop', 'soundtrack', 'hip-hop', 'east coast 17964 rock 17965 r&b', 'pop', 'rap', 'neo soul 17966 r&b 17967 pop', 'r&b', 'teen pop', 'hip-hop 17968 pop 17969 pop', 'ballad', 'boy band 17970 pop', 'r&b', 'funk 17971 r&b', 'pop', 'uk garage', 'uk r&b', 'uk 17972 rock', 'pop-rock', 'alternative rock 17973 pop 17974 pop', 'rap', 'dance-pop 17975 pop', 'r&b', 'soul pop', 'soul 17976 pop 17977 rock', 'country 17978 pop 17979 pop', 'rock 17980 pop', 'r&b', 'baroque pop', 'soft rock', 'singer-songwriter', 'ballad', 'piano', 'soul', 'soul pop 17981 rock', 'pop-punk', 'punk rock 17982 r&b', 'pop', 'singer-songwriter 17983 r&b', 'pop', 'soundtrack', 'funk', 'funk-pop 17984 rock', 'art rock', 'alternative metal', 'metal', 'alternative', 'progressive metal', 'progressive rock 17985 rap', 'shadyxv', 'hardcore hip-hop', 'hip-hop 17986 country', 'rock 17987 r&b 17988 rap 17989 rap 17990 pop', 'r&b', 'rap', 'hip-hop', 'remix 17991 country 17992 pop', 'r&b', 'singer-songwriter', 'neo soul', 'soul', 'soul pop 17993 r&b', 'rap 17994 rap 17995 pop', 'ballad', 'ireland', 'adult contemporary', 'new age 17996 rap', 'gangsta rap', 'atlanta', 'dirty south 17997 pop 17998 r&b', 'rap', 'hip-hop', 'soundtrack 17999 r&b 18000 country', 'singer-songwriter', 'honky tonk 18001 rock', 'soundtrack', 'cover', 'pop-rock 18002 country 18003 rap 18004 rap', 'dirty south', 'florida rap', 'hardcore hip-hop', 'gangsta rap', 'hip-hop 18005 rap', 'pop rap', 'east coast 18006 rap 18007 rock', 'post-grunge', 'alternative rock 18008 rock', 'alternative rock', 'post-grunge 18009 rock', 'alternative rock', 'pop-punk', 'punk rock 18010 pop', 'r&b', 'soul pop 18011 pop', 'r&b', 'neo soul', 'soul', 'soul pop 18012 country 18013 pop', 'screen', 'disney', 'soundtrack 18014 pop 18015 rap', 'deutschsprachiger rap', 'deutschland 18016 rap 18017 pop', 'trance', 'eurodance 18018 rap 18019 country 18020 rock', 'mental health', 'alternative rock', 'nu-metal 18021 rap', 'dirty south 18022 rap', 'comedy', 'memes 18023 pop', 'canada 18024 country', 'rock 18025 r&b 18026 r&b', 'rap 18027 pop', 'boy band 18028 rock', 'rap', 'dance rock', 'british rock', 'rap rock', 'alternative', 'alternative rock', 'trip-hop', 'uk', 'producer 18029 pop', 'r&b', 'soul pop', 'soul 18030 country 18031 rock', 'adult alternative', 'funk rock', 'hard rock', 'post-grunge', 'pop-rock', 'nu-metal', 'cover', 'alternative metal', 'alternative rock 18032 r&b', 'neo soul 18033 rap', 'posse cut', 'gangsta rap', 'hardcore hip-hop', 'dirty south', 'crunk 18034 pop', 'r&b', 'dance-pop 18035 rock', 'pop', 'singer-songwriter', 'pop-rock 18036 pop', 'rock', 'ballad', 'pop-rock 18037 rock', 'rap rock', 'gaming', 'soundtrack', 'punk rock', 'skate punk', 'canada', 'pop-punk 18038 r&b', 'pop', 'rap', 'gangsta rap', 'east coast 18039 country', 'rap', 'dirty south', 'country rap 18040 r&b', 'pop', 'singer-songwriter', 'soul pop 18041 r&b', 'pop', 'neo soul 18042 pop', 'r&b', 'singer-songwriter', 'soul pop', 'neo soul', 'soul 18043 rock', 'alternative metal', 'alternative rock', 'hard rock', 'post-grunge 18044 rock 18045 pop 18046 r&b 18047 r&b 18048 country 18049 country', 'ballad', 'feminism', 'theme song 18050 r&b', 'pop', 'adult contemporary', 'acoustic', 'soul pop', 'boy band 18051 rock', 'hard rock', 'post-grunge', 'alternative rock 18052 pop', 'r&b', 'singer-songwriter', 'soul pop', 'soul 18053 r&b', 'singer-songwriter', 'soul 18054 country', 'rock', 'eighties', 'singer-songwriter 18055 pop', 'adult contemporary', 'ballad', 'easy listening', 'spanish music', 'latin pop 18056 rock', 'piano rock', 'piano', 'ballad', 'adult alternative', 'pop-rock', 'alternative rock', 'ireland 18057 pop', 'r&b', 'adult contemporary', 'ballad', 'cover', 'soul pop 18058 r&b 18059 rap 18060 pop 18061 r&b', 'rap', 'soul 18062 pop 18063 r&b', 'rap', 'soundtrack', 'east coast', 'west coast', 'g-funk 18064 rap', 'east coast', 'pop rap', 'hip-hop', 'producer 18065 rap', 'r&b', 'pop 18066 country', 'rock', 'country rap 18067 rock 18068 rock', 'nu-metal', 'post-grunge 18069 rap', 'hardcore hip-hop', 'east coast', 'gangsta rap 18070 rap 18071 pop', 'ballad', 'boy band 18072 country 18073 r&b', 'pop', 'dance', 'electro-pop 18074 rap', 'soundtrack 18075 rock', 'alternative metal', 'nu-metal 18076 country 18077 rap', 'west coast', 'atlanta', 'dirty south 18078 rock', 'nu-metal', 'post-grunge', 'christian', 'christian rock', 'hard rock 18079 pop', 'teen pop', 'funk-pop', 'funk', 'dance-pop', 'dance 18080 country 18081 country 18082 pop', 'rock', 'latin music', 'colombia', 'world music', 'latin pop 18083 country 18084 country', 'rock 18085 rap', 'gangsta rap', 'east coast', 'latin urban 18086 rap 18087 pop', 'r&b', 'singer-songwriter', 'soul pop', 'neo soul', 'soul 18088 rap', 'rock', 'christian rap', 'hard rock', 'rap rock', 'alternative metal', 'alternative rock', 'metal', 'christian metal', 'christian rock', 'nu-metal 18089 rap', 'rock', 'alternative rock', 'rap rock', 'nu-metal 18090 rap', 'dirty south', 'east coast', 'hip-hop 18091 pop', 'rock', 'pop-rock', 'alternative', 'ballad', 'alternative rock', 'post-grunge', 'soundtrack 18092 r&b', 'soul 18093 rap', 'east coast 18094 rap', 'gangsta rap', 'dirty south 18095 rap 18096 r&b', 'pop', 'lo-fi', 'neo soul', 'soul pop 18097 pop', 'singer-songwriter', 'folk rock', 'folk', 'adult alternative', 'adult contemporary', 'pop-rock 18098 r&b', 'soul', 'soul pop', 'atlanta 18099 country', 'rock 18100 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast', 'hip-hop 18101 country', 'memorial', 'orchestral', 'piano', 'ballad', 'singer-songwriter 18102 pop', 'r&b', 'rap', 'singer-songwriter', 'remix 18103 country', 'soft rock', 'piano', 'ballad 18104 r&b', 'pop', 'canada', 'neo soul', 'soul', 'soul pop 18105 pop 18106 r&b', 'pop', 'uk r&b', 'uk 18107 pop', 'rock', 'electro-pop', 'pop-rock', 'dancehall 18108 country 18109 rap', 'r&b', 'ballad', 'neo soul', 'soul 18110 rap', 'hip-hop', 'hardcore hip-hop', 'dirty south 18111 pop', 'r&b', 'soul pop', 'soul 18112 rock', 'singer-songwriter', 'britpop', 'uk', 'british rock 18113 r&b', 'rap', 'soundtrack', 'remix 18114 rap', 'east coast', 'hardcore hip-hop', 'hip-hop', 'beef 18115 rap', 'atlanta', 'dirty south 18116 r&b 18117 rock', 'hard rock', 'metal', 'alternative metal', 'alternative rock', 'nu-metal', 'post-grunge 18118 country 18119 rap', 'soundtrack', 'east coast 18120 pop', 'r&b', 'soul', 'soul pop 18121 rap 18122 rap', 'atlanta', 'dirty south 18123 rap', 'pop', 'r&b', 'hip-hop', 'remix 18124 r&b', 'pop 18125 pop 18126 rap', 'r&b', 'pop', 'hip-hop', 'boy band 18127 r&b 18128 rock', 'memes', 'metal', 'nu-metal', 'alternative metal 18129 rock 18130 rock', 'alternative rock', 'hard rock', 'post-grunge 18131 r&b', 'rap 18132 country', 'rock', 'ballad 18133 country 18134 country 18135 country 18136 pop 18137 pop 18138 rap', 'hip-hop', 'hardcore hip-hop', 'east coast', 'gangsta rap 18139 r&b', 'pop', 'electro-pop', 'hip-hop', 'funk', 'soul pop', 'soul', 'singer-songwriter 18140 pop', 'adult contemporary', 'synth-pop', 'techno', 'nu disco', 'australia', 'dance-pop', 'electronic', 'dance 18141 r&b', 'rap', 'east coast', 'hip-hop 18142 rap', 'gangsta rap', 'east coast 18143 r&b', 'pop', 'soul', 'soul pop 18144 rock', 'singer-songwriter', 'pop-rock 18145 pop', 'hip-hop', 'electro 18146 country 18147 rock', 'soft rock', 'gospel', 'uk', 'seventies', 'soundtrack', 'adult alternative', 'singer-songwriter', 'folk rock', 'british rock 18148 r&b', 'rap', 'east coast', 'christian rap 18149 pop 18150 r&b', 'pop', 'soul', 'neo soul 18151 pop', 'r&b', 'soul pop', 'soul 18152 rap', 'r&b', 'pop', 'hip-hop', 'boy band', 'remix 18153 country', 'rock 18154 rock', 'rap', 'alternative rock', 'rap rock 18155 pop 18156 r&b', 'pop 18157 r&b', 'rap', 'east coast', 'latin urban 18158 country', 'rock', 'honky tonk', 'ballad 18159 r&b', 'soul pop', 'neo soul', 'soul 18160 r&b 18161 rap', 'gangsta rap', 'dirty south', 'atlanta 18162 pop 18163 pop', 'rock', 'singer-songwriter', 'alternative', 'alternative rock', 'pop-rock 18164 pop', 'latin pop', 'dance-pop 18165 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast', 'hip-hop 18166 r&b 18167 country 18168 pop 18169 rock', 'pop', 'pop-rock 18170 pop 18171 rock', 'nu-metal', 'alternative metal 18172 rock', 'alternative rock 18173 pop', 'rock', 'orchestral', 'baroque pop', 'memes', 'ballad', 'piano', 'singer-songwriter 18174 pop 18175 rap', 'remix', 'east coast 18176 pop', 'rock', 'funk', 'alternative r&b', 'pop-rock 18177 rock', 'rap', 'hip-hop', 'alternative metal', 'rap metal', 'rap rock', 'nu-metal 18178 rap', 'hip-hop', 'posse cut', 'underground hip-hop', 'dirty south', 'alternative 18179 pop 18180 rock', 'pop-rock 18181 rock', 'emo pop', 'power pop', 'alternative', 'pop-rock', 'emo', 'alternative rock', 'pop-punk 18182 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 18183 pop', 'r&b', 'soundtrack', 'cover', 'neo soul', 'soul', 'soul pop 18184 country', 'rock', 'singer-songwriter 18185 rock', 'post-grunge 18186 country 18187 r&b 18188 rock 18189 r&b 18190 pop', 'r&b', 'neo soul', 'soul', 'soul pop 18191 r&b', 'neo soul', 'soul 18192 pop', 'jamaica', 'dancehall 18193 pop', 'r&b', 'rap', 'soul', 'soul pop 18194 country 18195 rap 18196 rap 18197 rap', 'east coast 18198 country', 'pop 18199 pop', 'r&b', 'neo soul', 'cover', 'soul pop', 'soul 18200 country 18201 pop', 'electro-pop', 'electronic', 'dance-pop', 'dance 18202 r&b', 'rap', 'psychedelic', 'funk', 'soul 18203 pop', 'rock', 'nineties', 'alternative', 'adult alternative', 'producer', 'singer-songwriter', 'adult contemporary', 'pop-rock 18204 rap 18205 rap 18206 rap', 'gangsta rap', 'hip-hop', 'dirty south 18207 pop', 'rock', 'funk', 'funk rock', 'dance-pop', 'dance', 'electronic rock 18208 r&b', 'rap 18209 rap', 'hip-hop', 'east coast 18210 rap', 'east coast', 'hip-hop 18211 rap', 'chicago drill', 'trap', 'drill 18212 pop', 'r&b', 'rap', 'remix 18213 r&b', 'rap 18214 r&b 18215 pop', 'teen pop', 'dance-pop 18216 pop 18217 r&b', 'bay area', 'singer-songwriter', 'funk', 'neo soul', 'soul 18218 pop', 'rap', 'funk', 'go-go 18219 rap 18220 pop', 'r&b', 'funk', 'hip-hop', 'soul pop 18221 rap', 'dirty south 18222 rock', 'nu-metal', 'alternative metal', 'metal 18223 pop', 'dance', 'méxico 18224 rap', 'patois', 'jamaica', 'dancehall 18225 rap', 'dirty south 18226 rap', 'comedy', 'memes', 'soundtrack', 'hip-hop', 'hardcore hip-hop', 'satire 18227 r&b 18228 pop 18229 country 18230 r&b 18231 pop', 'electronic', 'dance', 'electro house 18232 rock', 'alternative rock', 'marvel', 'screen', 'soundtrack', 'post-grunge 18233 country', 'ballad 18234 rap 18235 rap 18236 r&b', 'uk 18237 rock', 'industrial metal', 'metal', 'alternative metal', 'nu-metal 18238 pop', 'en español 18239 country 18240 rock', 'alternative rock 18241 rap', 'hardcore hip-hop', 'hip-hop', 'east coast 18242 pop', 'swing', 'swing jazz', 'jazz', 'comedy 18243 r&b', 'rap 18244 pop 18245 rap', 'virginia', 'hip-hop', 'hardcore hip-hop', 'gangsta rap', 'gaming', 'soundtrack 18246 rock', 'easy listening', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'pop-rock 18247 pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop 18248 pop', 'rock', 'pop-punk', 'teen pop', 'canada', 'pop-rock 18249 pop 18250 r&b', 'soul 18251 pop', 'eurotrance', 'edm', 'dance', 'electronic', 'cover', 'eurodance 18252 country 18253 rap', 'hip-hop', 'south africa 18254 country', 'rock 18255 pop', 'r&b', 'soul pop 18256 rock', 'nu-metal', 'alternative metal', 'christian rock', 'hard rock', 'post-grunge 18257 country', 'rock', 'singer-songwriter 18258 pop 18259 rap 18260 rock', 'hard rock', 'funk rock', 'alternative rock 18261 country 18262 rock', 'alternative', 'alternative rock 18263 country 18264 r&b', 'rap', 'remix 18265 rap 18266 pop 18267 country 18268 rock', 'rap', 'theme song', 'soundtrack 18269 pop', 'australia', 'dance', 'nu disco', 'house', 'electronic', 'dance-pop 18270 pop', 'rock', 'funk', 'alternative r&b', 'soul', 'pop-rock 18271 country', 'rock 18272 country 18273 rock', 'alternative rock 18274 rock 18275 rap 18276 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 18277 pop', 'r&b', 'rap', 'neo soul', 'soul 18278 rap 18279 rock', 'pop 18280 rap 18281 rap', 'dirty south 18282 country 18283 rap 18284 rap', 'rock', 'nu-metal 18285 country 18286 rock', 'alternative', 'sverige', 'punk revival', 'garage rock', 'indie rock', 'punk rock', 'soundtrack', 'alternative rock', 'garage punk 18287 rap', 'underground hip-hop', 'hip-hop 18288 rap 18289 r&b', 'soul 18290 pop', 'acoustic 18291 rock', 'alternative rock', 'post-grunge 18292 rock', 'adult alternative', 'singer-songwriter', 'adult contemporary', 'heartland rock 18293 rap', 'hip-hop', 'hardcore hip-hop', 'horrorcore 18294 r&b', 'pop', 'rap', 'reggae', 'soul pop', 'dancehall 18295 r&b 18296 rock', 'acoustic', 'adult alternative', 'easy listening', 'folk rock', 'pop-rock', 'singer-songwriter 18297 rock', 'punk rock', 'emo', 'post-hardcore', 'pop-punk 18298 r&b', 'hip-hop', 'dance-pop 18299 pop', 'r&b', 'singer-songwriter', 'soul pop', 'dance-pop 18300 country 18301 country', 'ballad 18302 r&b', 'atlanta 18303 r&b', 'rap 18304 rock', 'progressive metal', 'alternative metal', 'metal 18305 pop 18306 r&b', 'rap', 'remix 18307 country', 'australia', 'singer-songwriter 18308 rap 18309 r&b', 'pop', 'neo soul', 'soul', 'soul pop 18310 pop', 'rock', 'adult contemporary', 'singer-songwriter', 'pop-rock 18311 rock', 'pop', 'canada', 'pop-rock 18312 country 18313 country 18314 r&b', 'rap 18315 pop', 'r&b', 'singer-songwriter', 'soul pop', 'soul 18316 rap', 'east coast', 'hip-hop 18317 pop', 'rock', 'chill', 'soft rock', 'jamaica', 'ska', 'reggae', 'alternative rock 18318 rock', 'pop', 'singer-songwriter', 'ballad', 'pop-rock 18319 country', 'rock 18320 rap 18321 rap', 'r&b', 'pop', 'singer-songwriter 18322 rock', 'pop-rock 18323 rock 18324 r&b', 'soul', 'neo soul', 'soul pop 18325 pop 18326 pop', 'r&b', 'rap', 'singer-songwriter', 'neo soul', 'soul pop', 'soul 18327 rock', 'pop-punk', 'punk rock 18328 rock', 'pop', 'pop-rock', 'canada 18329 pop', 'rap', 'experimental', 'alternative 18330 rap', 'virginia', 'hip-hop 18331 r&b 18332 rock', 'country', 'alternative', 'alternative country', 'alternative rock', 'adult contemporary', 'adult alternative 18333 r&b 18334 pop', 'soft rock', 'american idol', 'ballad 18335 rap', 'r&b', 'pop', 'hip-hop 18336 country', 'ballad', 'cover 18337 country 18338 rock', 'alternative metal', 'heavy metal 18339 r&b', 'rock 18340 rock 18341 rock', 'pop', 'soft rock', 'dream pop', 'easy listening', 'ballad', 'cover', 'piano', 'adult alternative', 'adult contemporary', 'soul jazz', 'jazz fusion', 'pop-rock', 'jazz 18342 r&b', 'soul', 'neo soul 18343 rap', 'west coast 18344 r&b 18345 rock', 'rap', 'rap rock', 'memes', 'hip-hop', 'soundtrack', 'shadyxv 18346 rock', 'pop-rock', 'latin rock', 'méxico 18347 rock', 'country', 'ballad 18348 country', 'ballad', 'honky tonk 18349 country', 'rock 18350 rap 18351 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 18352 rock', 'country 18353 rock', 'nu-metal', 'post-grunge 18354 rock', 'folk rock', 'post-grunge', 'art rock', 'acoustic', 'grunge', 'alternative rock 18355 r&b 18356 rap 18357 pop', 'orchestral', 'dance-pop', 'synth-pop', 'electro-pop', 'electronic', 'soundtrack 18358 rock', 'alternative', 'alternative rock', 'grunge 18359 pop', 'dance 18360 pop', 'country', 'rock', 'singer-songwriter', 'canada', 'pop country 18361 rock', 'alternative rock', 'pop-rock 18362 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 18363 r&b', 'rap', 'east coast 18364 rock', 'alternative metal', 'metal', 'nu-metal 18365 r&b', 'rap', 'east coast 18366 pop', 'r&b', 'rap 18367 r&b 18368 rap 18369 pop 18370 pop', 'rock', 'ballad', 'soft rock', 'singer-songwriter', 'adult contemporary', 'easy listening', 'pop-rock 18371 pop 18372 rock', 'post-grunge', 'hard rock', 'alternative rock 18373 r&b', 'soul 18374 rock', 'acoustic 18375 pop', 'dance', 'trance', 'eurodance', 'electronic 18376 rap', 'posse cut', 'hip-hop', 'crunk 18377 rock', 'alternative', 'psychedelic rock', 'alternative rock 18378 pop 18379 pop 18380 r&b', 'rap 18381 rap', 'hip-hop', 'hardcore hip-hop', 'west coast', 'gangsta rap 18382 pop', 'r&b', 'soul', 'soul pop 18383 rap', 'east coast 18384 r&b', 'pop', 'ballad 18385 rap', 'r&b', 'soul pop', 'soul', 'neo soul 18386 country 18387 rock 18388 rap 18389 pop', 'r&b', 'cover', 'soul pop', 'soul 18390 pop', 'baroque pop', 'piano', 'adult contemporary', 'ballad 18391 rock 18392 country 18393 r&b', 'rap', 'east coast', 'hardcore hip-hop', 'hip-hop 18394 rock', 'hard rock', 'post-grunge', 'alternative rock 18395 pop', 'r&b', 'ballad', 'soul', 'soul pop 18396 rap 18397 pop', 'r&b', 'rap', 'soul', 'boy band 18398 rap', 'new york', 'east coast', 'shadyxv 18399 country 18400 rock', 'alternative metal', 'hard rock 18401 rap', 'house', 'deep house', 'bounce 18402 rap', 'scandinavia', 'sverige', 'svensk rap 18403 pop', 'rock', 'adult contemporary', 'pop-rock', 'ballad', 'canada 18404 pop 18405 r&b 18406 r&b 18407 country 18408 country', 'rock', 'ballad 18409 rock 18410 rock 18411 r&b', 'rap', 'east coast', 'hip-hop 18412 rap 18413 pop', 'electro', 'electro-pop', 'electronic', 'australia', 'dance-pop 18414 r&b', 'pop', 'singer-songwriter 18415 rap', 'producer 18416 rap 18417 rap', 'r&b 18418 r&b', 'pop', 'rap 18419 country 18420 rock', 'south africa', 'hard rock', 'alternative', 'alternative rock', 'post-grunge 18421 rap 18422 rock', 'stoner rock', 'alternative rock', 'hard rock 18423 r&b', 'pop', 'ballad 18424 pop', 'trip-hop', 'electro-pop', 'electro house', 'electronic', 'downtempo', 'house 18425 pop 18426 r&b', 'rap 18427 country 18428 pop', 'rock', 'electronica', 'lgbtq+', 'alternative rock', 'россия (russia)', 'pop-rock 18429 pop', 'hip-hop', 'dance-pop 18430 rap', 'new york', 'hip-hop', 'memes', 'producer', 'east coast', 'gangsta rap', 'shadyxv 18431 r&b', 'reggae', 'jamaica', 'dancehall 18432 rap 18433 country', 'rock', 'ballad', 'singer-songwriter 18434 pop 18435 country 18436 country 18437 rap 18438 rap', 'hardcore hip-hop', 'hip-hop 18439 rap 18440 rock', 'symphonic rock', 'piano rock', 'psychedelic rock', 'post-britpop', 'ballad', 'adult alternative', 'adult contemporary', 'piano', 'british rock', 'pop-rock', 'uk', 'alternative rock 18441 country', 'ballad 18442 pop', 'country', 'rock', 'canada', 'pop country 18443 rock 18444 rap', 'gangsta rap', 'hardcore hip-hop', 'east coast 18445 rock', 'alternative rock', 'rap rock', 'funk rock 18446 pop', 'r&b', 'rap', 'soul pop', 'west coast 18447 country 18448 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast', 'marvel', 'soundtrack', 'memes 18449 rap', 'gangsta rap', 'hardcore hip-hop', 'east coast 18450 rap', 'east coast', 'hip-hop 18451 rock', 'pop-punk 18452 pop', 'canada', 'dance-pop', 'québec 18453 rap 18454 rap', 'dirty south', 'gangsta rap 18455 r&b 18456 r&b', 'rap', 'virginia', 'hip-hop', 'east coast 18457 rap', 'east coast 18458 r&b', 'rap 18459 country', 'rock 18460 r&b 18461 pop', 'patois', 'reggae', 'jamaica', 'dancehall 18462 rap', 'classical crossover', 'conscious hip-hop', 'east coast 18463 rock', 'hard rock', 'post-grunge', 'alternative rock 18464 country 18465 country', 'rock', 'ballad 18466 rap', 'r&b', 'traduction française 18467 pop', 'r&b', 'rap', 'new york', 'east coast', 'pop rap 18468 pop 18469 r&b', 'rap 18470 rock', 'post-grunge', 'adult alternative', 'alternative', 'alternative rock 18471 pop', 'r&b', 'rap', 'soul', 'boy band 18472 rap', 'bounce', 'dirty south 18473 r&b 18474 rock', 'rap', 'rap rock', 'alternative rock', 'nu-metal 18475 country 18476 rock', 'symphonic rock', 'rap rock', 'gothic rock', 'gothic metal', 'piano rock', 'piano', 'hard rock', 'alternative rock', 'dark pop', 'alternative metal', 'nu-metal 18477 country 18478 country 18479 country', 'rock 18480 pop 18481 rock', 'ballad', 'soft rock', 'mental health', 'adult contemporary', 'adult alternative', 'alternative rock', 'pop-rock 18482 r&b', 'pop', 'singer-songwriter 18483 country 18484 rap 18485 r&b 18486 rock', 'pop', 'adult contemporary', 'adult alternative', 'cover', 'pop-rock 18487 pop 18488 r&b', 'rap 18489 country 18490 rock', 'punk rock', 'pop-punk', 'pop-rock 18491 pop', 'r&b', 'soul pop 18492 pop', 'rock', 'pop-rock', 'electronic rock', 'electronic 18493 rock', 'cover 18494 pop', 'rock', 'pop-punk 18495 country 18496 rap 18497 rock', 'country', 'pop', 'ballad', 'cover', 'adult contemporary', 'pop-rock', 'pop country 18498 pop', 'rock', 'alternative', 'alternative rock', 'adult alternative', 'progressive rock', 'avant-pop', 'power pop', 'easy listening', 'album-oriented rock (aor)', 'soft rock', 'uk', 'glam rock', 'yacht rock', 'art rock', 'art pop', 'pop-rock', 'psychedelic rock', 'psychedelic 18499 rap', 'underground hip-hop', 'conscious hip-hop', 'east coast 18500 rock', 'rap', 'hip-hop', 'rap rock 18501 pop', 'uk', 'ballad 18502 rock', 'post-grunge', 'metal', 'alternative metal', 'nu-metal', 'alternative rock 18503 country', 'pop country 18504 country', 'gospel 18505 rap 18506 rap', 'hip-hop', 'hardcore hip-hop', 'remix', 'gangsta rap 18507 rap', 'rock', 'pop', 'folktronica', 'politics', 'folk rock', 'singer-songwriter', 'electro-pop', 'electronic 18508 rap', 'hardcore hip-hop', 'hip-hop', 'atlanta', 'dirty south 18509 r&b', 'pop', 'adult contemporary', 'soul pop', 'soul', 'pop-rock 18510 rap 18511 r&b', 'pop', 'ballad 18512 pop 18513 rap', 'pop', 'remix 18514 rock', 'heavy metal', 'nu-metal', 'alternative rock', 'alternative metal', 'hard rock 18515 country 18516 rap', 'west coast 18517 pop 18518 rock', 'nu-metal', 'alternative metal 18519 rap 18520 pop', 'r&b', 'rap', 'soul', 'soul pop 18521 pop', 'r&b', 'rap', 'soul', 'soul pop 18522 rock', 'hard rock', 'alternative rock 18523 rock', 'hard rock', 'grunge', 'post-grunge', 'canada 18524 rap 18525 pop 18526 rap 18527 rap', 'gangsta rap', 'dirty south 18528 pop', 'r&b', 'soul pop', 'soul 18529 pop 18530 r&b 18531 rock', 'easy listening', 'pop-rock', 'soft rock', 'singer-songwriter 18532 pop', 'r&b', 'soul 18533 rap 18534 r&b', 'soul pop', 'soul 18535 rap', 'hardcore hip-hop', 'gangsta rap', 'hip-hop', 'atlanta', 'dirty south', 'crunk 18536 pop', 'r&b', 'soul 18537 pop', 'dance-pop 18538 pop 18539 rock', 'alternative metal 18540 r&b', 'pop', 'rock', 'teen pop', 'pop-rock 18541 r&b', 'pop 18542 rap 18543 rap', 'dirty south', 'hip-hop 18544 rap 18545 r&b', 'funk-pop', 'pop rap', 'soul pop 18546 pop 18547 pop', 'rock', 'ballad', 'adult contemporary', 'adult alternative', 'pop-rock 18548 country', 'rock', 'ballad', 'chill', 'canada', 'singer-songwriter', 'pop country 18549 rock', 'indie rock', 'indie', 'alternative', 'garage rock revival', 'garage rock', 'adult alternative', 'alternative rock 18550 rap 18551 country', 'rock', 'ballad', 'honky tonk', 'singer-songwriter 18552 rap', 'new york', 'hip-hop', 'gangsta rap', 'calypso', 'east coast', 'shadyxv 18553 country 18554 rock', 'en español 18555 pop 18556 rap', 'soundtrack', 'dirty south', 'gangsta rap', 'hip-hop 18557 pop', 'patois', 'electro-pop', 'jamaica', 'dancehall 18558 pop 18559 rap 18560 r&b', 'pop', 'electro house', 'dance-pop', 'synth-pop', 'dance', 'electro-pop 18561 r&b', 'pop', 'rap', 'charity', 'pop rap', 'conscious hip-hop 18562 rap', 'r&b', 'latin pop', 'méxico 18563 r&b 18564 country', 'rock', 'singer-songwriter 18565 r&b 18566 pop', 'r&b', 'rap', 'east coast', 'producer 18567 rock', 'pop-rock 18568 country 18569 country 18570 country', 'rock', 'singer-songwriter 18571 pop 18572 r&b', 'pop', 'ballad', 'adult contemporary', 'cover', 'american idol', 'soul pop', 'soul 18573 rap', 'hip-hop', 'soundtrack 18574 pop', 'rock', 'electronic 18575 pop', 'r&b', 'soul', 'adult contemporary 18576 rock 18577 country', 'rock', 'honky tonk 18578 country', 'rock 18579 pop', 'r&b', 'soul pop 18580 country 18581 pop 18582 rap 18583 country 18584 country', 'rock 18585 r&b', 'rap 18586 country 18587 pop', 'rap', 'patois', 'jamaica', 'dancehall 18588 r&b 18589 rock', 'pop', 'alternative rock', 'skate punk', 'pop-rock', 'punk rock', 'cover', 'pop-punk 18590 rock', 'alternative rock', 'alternative 18591 rap', 'rock', 'rap rock', 'alternative rock', 'nu-metal 18592 rock 18593 rock', 'hard rock', 'post-grunge', 'latin rock 18594 r&b', 'pop', 'singer-songwriter 18595 pop', 'r&b', 'rap', 'hip-hop 18596 rock', 'pop', 'adult contemporary', 'soul pop', 'ballad', 'pop-rock 18597 rock', 'hard rock', 'alternative rock 18598 r&b 18599 rap', 'gangsta rap', 'dirty south', 'atlanta', 'trap 18600 rock', 'alternative metal', 'nu-metal 18601 pop 18602 rap 18603 country 18604 pop 18605 rap', 'gangsta rap', 'hip-hop', 'hardcore hip-hop', 'atlanta', 'dirty south', 'crunk 18606 r&b', 'dancehall 18607 pop 18608 rock', 'pop', 'pop-rock 18609 r&b', 'pop', 'patois', 'jamaica', 'dancehall 18610 country', 'singer-songwriter 18611 rock', 'hard rock', 'post-grunge', 'alternative rock 18612 country 18613 rap 18614 pop 18615 pop', 'r&b', 'soul', 'soul pop 18616 rap', 'r&b 18617 country 18618 rock', 'pop', 'funk', 'indie rock', 'alternative', 'funk rock', 'alternative rock', 'pop-rock 18619 rock', 'country', 'singer-songwriter', 'ballad 18620 rock', 'ballad', 'hard rock', 'pop-rock', 'alternative rock', 'post-grunge 18621 rap', 'gangsta rap', 'east coast', 'hardcore hip-hop 18622 country', 'rock 18623 r&b', 'singer-songwriter', 'funk', 'neo soul', 'soul 18624 rap 18625 pop 18626 pop 18627 rock', 'orchestral', 'pop-rock', 'ballad', 'alternative', 'post-grunge 18628 rock', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'pop-rock 18629 country', 'singer-songwriter', 'ballad 18630 pop', 'r&b', 'soul 18631 rock', 'post-grunge', 'alternative rock', 'hard rock 18632 rap', 'country rap', 'posse cut', 'dirty south', 'hip-hop', 'underground hip-hop 18633 r&b', 'soul 18634 r&b', 'atlanta', 'soul pop', 'soul 18635 r&b', 'rap 18636 rap', 'dirty south', 'gangsta rap', 'hip-hop 18637 country', 'rock', 'singer-songwriter', 'honky tonk 18638 rap 18639 pop', 'edm', 'trance', 'electro-pop', 'electronic 18640 rap', 'hip-hop 18641 rock', 'pop', 'pop-rock 18642 pop', 'rock', 'soft rock', 'ballad', 'pop-rock 18643 pop', 'rock', 'teen pop', 'pop-rock 18644 pop', 'pop-rock 18645 r&b', 'neo soul', 'singer-songwriter', 'soul 18646 rock', 'alternative rock', 'pop-rock 18647 rock', 'alternative rock 18648 r&b', 'pop', 'rap', 'atlanta', 'dirty south', 'funk', 'soul', 'soul pop 18649 pop', 'r&b', 'rap', 'soul', 'soul pop 18650 rock', 'alternative rock', 'post-grunge 18651 country', 'rock 18652 rap', 'hardcore hip-hop', 'crunk', 'dirty south 18653 r&b 18654 country 18655 rap', 'new york', 'east coast 18656 country 18657 pop', 'r&b', 'dance-pop', 'alternative dance', 'electronic', 'electro-pop', 'memes', 'soundtrack', 'dance 18658 rock', 'power pop', 'alternative rock', 'pop-punk', 'punk rock 18659 rap 18660 rock', 'singer-songwriter', 'christian rock', 'christian pop', 'worship', 'christian 18661 rap 18662 rap', 'r&b', 'pop', 'neo soul', 'soul pop', 'soul 18663 rock', 'garage punk', 'punk rock', 'screen', 'soundtrack', 'pop-punk 18664 rap', 'hip-hop', 'hardcore hip-hop', 'remix', 'soundtrack', 'west coast', 'east coast 18665 r&b', 'rap 18666 rap 18667 pop 18668 pop 18669 pop 18670 r&b', 'pop', 'dance 18671 rap 18672 pop 18673 pop', 'country', 'rock', 'alternative', 'adult contemporary', 'adult alternative', 'pop country', 'cover', 'pop-rock 18674 rap', 'beef', 'hardcore hip-hop', 'gangsta rap', 'east coast 18675 pop', 'rock', 'synth rock', 'synth-pop', 'adult contemporary', 'cover', 'new wave', 'pop-rock', 'alternative rock 18676 rock', 'pop-punk', 'canada', 'québec 18677 country', 'rock 18678 country', 'honky tonk', 'pop country 18679 rap', 'east coast 18680 r&b 18681 rap 18682 pop 18683 rock', 'alternative rock', 'nu-metal 18684 country', 'piano', 'ballad', 'cover 18685 country 18686 country', 'rock', 'piano', 'ballad 18687 r&b', 'funk', 'soul', 'neo soul', 'soul pop 18688 r&b', 'rap', 'hip-hop', 'east coast 18689 pop', 'r&b', 'baroque pop', 'piano', 'singer-songwriter', 'soul', 'soul pop 18690 rock', 'alternative rock', 'post-grunge 18691 r&b', 'pop 18692 rap', 'hip-hop', 'atlanta', 'hardcore hip-hop', 'dirty south', 'crunk 18693 r&b', 'rap 18694 rock', 'punk rock', 'pop-rock 18695 pop', 'ballad', 'adult contemporary', 'easy listening 18696 rock', 'grunge 18697 r&b 18698 rap', 'bounce', 'crunk', 'bay area', 'west coast 18699 country 18700 pop', 'ballad 18701 r&b', 'pop', 'soul pop 18702 country 18703 rock', 'metal', 'hard rock', 'alternative metal', 'post-grunge 18704 pop', 'rap', 'chipmunk soul', 'hardcore hip-hop', 'conscious hip-hop', 'neo soul', 'hip-hop', 'producer 18705 pop', 'gospel 18706 pop', 'r&b', 'rap', 'neo soul', 'hip-hop 18707 r&b', 'rap 18708 country', 'rock', 'canada', 'pop country 18709 rap', 'hardcore hip-hop', 'hip-hop', 'west coast', 'gangsta rap 18710 r&b', 'pop', 'synth-pop', 'orchestral 18711 rap', 'alternative r&b 18712 country', 'adult contemporary', 'ballad 18713 r&b', 'rap', 'soul 18714 country 18715 country', 'rock 18716 country', 'rock', 'bluegrass', 'christian', 'singer-songwriter 18717 r&b', 'rap 18718 rock', 'garage rock', 'australia', 'alternative rock', 'pop-rock 18719 rock', 'alternative rock 18720 country', 'rock', 'ballad', 'singer-songwriter 18721 r&b', 'rap 18722 r&b', 'rap 18723 rap', 'remix', 'gangsta rap', 'hip-hop', 'hardcore hip-hop', 'dirty south', 'crunk 18724 pop 18725 country', 'rock', 'singer-songwriter 18726 pop 18727 pop 18728 r&b', 'rap', 'gangsta rap', 'dirty south', 'hip-hop 18729 r&b', 'rap', 'soul 18730 rap', 'dirty south', 'hardcore hip-hop', 'hip-hop 18731 rock', 'post-grunge', 'hard rock', 'alternative metal', 'alternative rock 18732 pop', 'jamaica', 'reggae', 'dancehall 18733 rap 18734 rap', 'hip-hop', 'dirty south', 'crunk 18735 pop', 'rap', 'r&b', 'hip-hop', 'atlanta', 'dirty south', 'crunk', 'producer 18736 rock', 'acoustic', 'piano', 'baroque pop', 'adult contemporary', 'pop-rock', 'ballad 18737 rock', 'post-grunge', 'alternative rock 18738 rap 18739 rap', 'gangsta rap', 'dirty south', 'trap 18740 country 18741 rap', 'hip-hop 18742 rap', 'hip-hop', 'east coast 18743 country', 'pop country 18744 country 18745 pop 18746 pop 18747 pop', 'electro-pop', 'future house', 'techno', 'dance-pop', 'house', 'dance 18748 r&b', 'rap', 'hip-hop 18749 rap 18750 pop', 'rap 18751 pop 18752 country 18753 rock 18754 rock', 'post-grunge', 'alternative rock 18755 rap 18756 pop', 'jamaica', 'dancehall', 'reggae 18757 r&b', 'rap', 'east coast 18758 rock 18759 rock', 'pop', 'adult alternative', 'adult contemporary', 'pop-rock 18760 country', 'australia', 'ballad', 'adult contemporary', 'pop country', 'easy listening 18761 pop', 'rock', 'ballad', 'piano 18762 rap 18763 r&b', 'rock', 'pop', 'singer-songwriter', 'funk rock 18764 r&b', 'rap', 'dirty south', 'soundtrack', 'soul', 'funk 18765 pop', 'country', 'funk-pop', 'funk', 'reggae 18766 r&b', 'rap', 'producer', 'soul pop', 'soul', 'neo soul 18767 rock', 'country', 'pop country 18768 pop', 'australia', 'synth-pop', 'electro-pop', 'electronic 18769 pop 18770 pop', 'pop-rock 18771 rock 18772 country 18773 pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop', 'ballad', 'piano 18774 pop 18775 rock', 'soft rock', 'alternative rock', 'post-grunge', 'cover 18776 country 18777 pop 18778 pop', 'r&b', 'soul pop', 'soul 18779 rap 18780 r&b 18781 pop', 'rap', 'pop rap', 'neo soul', 'conscious hip-hop', 'producer 18782 r&b', 'pop', 'rap', 'atlanta', 'dirty south 18783 pop 18784 rock', 'art rock', 'post-punk revival', 'garage rock', 'punk rock', 'indie rock 18785 pop', 'rock', 'post-grunge', 'teen pop', 'ballad', 'alternative rock', 'soundtrack', 'pop-rock 18786 country 18787 rap 18788 rock', 'soft rock', 'ballad', 'adult alternative', 'alternative', 'emo', 'alternative rock', 'pop-punk 18789 rap', 'memes', 'shadyxv 18790 pop', 'adult contemporary', 'easy listening', 'gospel', 'cover', 'ballad 18791 pop 18792 pop', 'jamaica', 'dancehall 18793 rap', 'hip-hop', 'gaming 18794 r&b', 'pop 18795 country', 'rock', 'ballad', 'honky tonk', 'cover 18796 pop 18797 pop 18798 pop', 'ballad', 'cover 18799 pop', 'rock', 'alternative rock', 'post-grunge', 'canada 18800 country 18801 r&b 18802 r&b', 'pop', 'singer-songwriter 18803 rock', 'christian rock', 'christian', 'post-grunge', 'alternative', 'alternative rock 18804 rock', 'alternative rock', 'hard rock 18805 country 18806 rap', 'pop rap', 'underground hip-hop', 'hip-hop', 'dancehall 18807 country 18808 country 18809 country 18810 rap', 'rock', 'alternative rock', 'nu-metal 18811 pop', 'r&b', 'soul', 'soul pop 18812 pop', 'r&b 18813 pop 18814 pop 18815 rap', 'hip-hop', 'hardcore hip-hop', 'east coast 18816 r&b', 'soul', 'soul pop', 'neo soul 18817 rap', 'atlanta', 'dancehall', 'dirty south', 'florida rap', 'latin music', 'latin rap', 'latin urban', 'reggaetón 18818 r&b', 'rap 18819 rap', 'atlanta', 'dirty south', 'east coast', 'hardcore hip-hop', 'hip-hop', 'new york', 'soundtrack 18820 rap', 'dirty south', 'crunk', 'dancehall', 'jamaica 18821 pop', 'r&b', 'soul pop', 'soul 18822 country', 'rock', 'honky tonk 18823 rap', 'dirty south 18824 rock', 'reggae rock', 'ska', 'cover 18825 pop', 'dancehall 18826 rock', 'pop-punk', 'nu-metal 18827 r&b', 'atlanta 18828 country 18829 pop 18830 rap', 'chipmunk soul', 'hip-hop', 'christian rap', 'gospel', 'conscious hip-hop', 'christian 18831 pop 18832 country', 'rock', 'pop country', 'canada', 'singer-songwriter 18833 rap 18834 rock', 'rap', 'hip-hop', 'hardcore hip-hop', 'rap rock', 'east coast 18835 pop 18836 rap', 'dirty south 18837 rock', 'alternative rock', 'hard rock 18838 rap 18839 rock', 'blues rock 18840 rap 18841 rock', 'pop-rock', 'punk rock', 'pop-punk 18842 pop 18843 rock', 'metal', 'alternative metal', 'alternative rock 18844 pop', 'r&b', 'rap', 'soul pop 18845 pop', 'piano', 'ballad 18846 r&b', 'rap 18847 country 18848 r&b 18849 pop 18850 rap 18851 rock 18852 rap', 'west coast', 'hip-hop 18853 rock', 'pop', 'alternative', 'dance rock', 'pop-rock', 'art rock', 'art pop', 'alternative rock 18854 pop', 'dance-pop', 'soundtrack 18855 rap', 'east coast', 'hip-hop', 'new york 18856 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 18857 rock', 'singer-songwriter', 'pop-rock', 'alternative rock 18858 country', 'rock 18859 country', 'rock', 'ballad', 'memorial 18860 country', 'power pop', 'ballad 18861 pop', 'scandinavia', 'norge', 'pop-rock', 'norsk pop 18862 r&b', 'rap', 'remix 18863 pop 18864 pop', 'r&b', 'singer-songwriter', 'piano', 'soul', 'soul pop 18865 country 18866 country', 'americana', 'bluegrass', 'pop country', 'ballad', 'adult contemporary', 'dark pop', 'acoustic 18867 pop 18868 r&b', 'rap 18869 rap', 'dance', 'east coast', 'gangsta rap', 'latin music', 'latin rap', 'latin urban', 'new york', 'soundtrack', 'video game 18870 rock', 'soundtrack', 'pop-rock', 'alternative rock 18871 country', 'rock 18872 r&b', 'rap', 'hip-hop 18873 rap 18874 r&b', 'rap', 'crunk', 'singer-songwriter', 'atlanta', 'dirty south 18875 rap 18876 pop', 'pop-rock 18877 rock 18878 rap 18879 rock 18880 country 18881 r&b', 'pop', 'dance', 'soul pop', 'soul 18882 rock', 'art rock', 'dance rock', 'garage rock', 'alternative', 'indie', 'dance punk', 'alternative rock', 'scotland', 'british rock', 'post-punk revival', 'uk', 'indie rock 18883 r&b', 'soul', 'ballad 18884 rap 18885 country 18886 country', 'honky tonk 18887 rap', 'atlanta', 'dirty south', 'trap 18888 rap', 'dance', 'east coast', 'hip-hop', 'new york 18889 pop 18890 rap', 'conscious hip-hop', 'hip-hop', 'east coast 18891 rap', 'hardcore hip-hop', 'underground hip-hop', 'hip-hop', 'trap', 'dirty south', 'atlanta 18892 rap 18893 country 18894 rock', 'pop', 'ballad', 'adult alternative', 'adult contemporary', 'pop-rock 18895 rock', 'ballad', 'acoustic', 'canada', 'alternative rock 18896 pop', 'r&b', 'rap', 'soul pop', 'soul 18897 country', 'singer-songwriter 18898 rap 18899 rock', 'electronic rock', 'alternative rock 18900 pop', 'rock', 'emo', 'post-grunge', 'alternative rock', 'canada 18901 country', 'singer-songwriter', 'alternative country 18902 country 18903 pop', 'r&b', 'gospel', 'soul', 'soul pop 18904 rock', 'metal', 'post-grunge', 'alternative metal', 'punk rock', 'hard rock 18905 rap', 'trap 18906 pop 18907 pop 18908 country 18909 rock', 'country', 'honky tonk 18910 country 18911 rock', 'post-grunge', 'nu-metal', 'metal', 'alternative metal 18912 country 18913 r&b', 'pop 18914 r&b', 'soul 18915 country 18916 rock', 'country', 'ballad 18917 r&b', 'pop', 'singer-songwriter', 'soul', 'jazz', 'soul jazz', 'soul pop 18918 pop', 'r&b 18919 rock', 'alternative', 'politics', 'protest songs', 'pop-punk', 'alternative rock', 'punk rock 18920 rap', 'atlanta', 'gangsta rap', 'crunk', 'dirty south 18921 pop', 'rock', 'disney', 'ballad', 'teen pop', 'cover', 'pop-rock', 'soundtrack 18922 country 18923 rap', 'dance', 'east coast', 'hip-hop', 'new york', 'soundtrack', 'video game 18924 pop 18925 country 18926 pop', 'r&b', 'soul pop 18927 rap', 'hip-hop', 'puerto rico', 'latin urban', 'reggaetón', 'en español 18928 r&b', 'rap', 'rock', 'neo soul', 'soul 18929 rock 18930 rap 18931 pop 18932 r&b', 'ballad', 'neo soul', 'soul 18933 rock', 'dance punk', 'alternative dance', 'alternative', 'alternative rock', 'pop-rock', 'post-punk revival', 'new wave 18934 pop', 'rap', 'patois', 'reggae', 'jamaica', 'dancehall 18935 rap 18936 pop 18937 pop', 'r&b', 'ballad', 'neo soul', 'soul pop', 'soul 18938 rock', 'punk rock', 'pop-punk 18939 pop', 'cover', 'soundtrack 18940 rock 18941 country 18942 rap', 'atlanta', 'dirty south', 'florida rap', 'hip-hop', 'hardcore hip-hop', 'rap rock 18943 rap 18944 country', 'honky tonk 18945 r&b', 'pop 18946 rap 18947 pop 18948 r&b', 'pop 18949 rap', 'hip-hop', 'conscious hip-hop', 'piano', 'lullaby 18950 rap', 'funk 18951 rock', 'alternative rock', 'ballad', 'hard rock 18952 rap', 'gangsta rap', 'west coast', 'memes', 'producer 18953 rock', 'soundtrack', 'christian rock', 'christian', 'alternative', 'alternative rock 18954 pop', 'pop-rock 18955 rap 18956 r&b', 'neo soul', 'soul', 'soul pop', 'producer 18957 rap', 'hardcore hip-hop', 'hip-hop', 'beef', 'memes 18958 rock', 'alternative rock', 'ireland 18959 rap 18960 pop', 'r&b', 'rap', 'teen pop', 'hip-hop 18961 r&b', 'soca', 'calypso', 'dancehall', 'reggae 18962 rap', 'r&b', 'pop 18963 pop', 'country', 'r&b', 'rap', 'adult contemporary', 'pop country', 'country rap', 'neo soul 18964 rap', 'hip-hop', 'hardcore hip-hop', 'crunk', 'dirty south 18965 r&b', 'rap', 'hip-hop', 'gangsta rap', 'hardcore hip-hop', 'east coast 18966 country', 'rock 18967 pop', 'funk', 'alternative dance', 'new wave', 'electro-pop', 'pop-rock 18968 rap 18969 rap', 'west coast 18970 pop 18971 r&b', 'rap 18972 country', 'rock 18973 pop', 'rock', 'pop-rock 18974 country', 'rock 18975 rock', 'alternative rock 18976 rap 18977 pop', 'r&b', 'soul pop', 'neo soul', 'soul 18978 country', 'rock 18979 r&b', 'rap', 'singer-songwriter', 'electro-pop', 'electronic 18980 country 18981 rap', 'crunk 18982 pop', 'rock', 'soft rock', 'easy listening', 'adult alternative', 'blues', 'ballad', 'singer-songwriter', 'pop-rock', 'adult contemporary', 'blues rock', 'acoustic 18983 country 18984 rap', 'dirty south', 'crunk', 'hardcore hip-hop 18985 pop', 'synth-pop', 'new wave 18986 rock', 'pop-punk', 'emo 18987 country', 'pop 18988 pop', 'country 18989 r&b', 'rap', 'remix 18990 pop', 'rap', 'latin rap', 'latin urban', 'puerto rico', 'latin pop', 'en español', 'latin music', 'reggaetón 18991 rap 18992 pop', 'r&b', 'pop-rock', 'soul 18993 rap', 'hip-hop 18994 r&b', 'rap 18995 rap', 'hip-hop', 'hardcore hip-hop', 'beef', 'gangsta rap', 'east coast 18996 rap 18997 rock', 'post-grunge', 'nu-metal', 'alternative metal 18998 r&b', 'rap', 'blues', 'east coast', 'hip-hop 18999 r&b', 'rap', 'remix', 'atlanta 19000 r&b', 'rap', 'atlanta', 'dirty south 19001 rap', 'east coast', 'gangsta rap', 'west coast 19002 rock', 'adult alternative', 'alternative rock', 'punk rock', 'pop-punk', 'pop-rock 19003 pop 19004 rock 19005 rock', 'rap', 'rap rock', 'mashup', 'remix 19006 rap', 'dirty south', 'hip-hop 19007 pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop', 'classical music', 'neo soul 19008 rap 19009 country', 'singer-songwriter 19010 country', 'australia', 'ballad', 'singer-songwriter 19011 country 19012 rap', 'west coast', 'hip-hop', 'hardcore hip-hop', 'gangsta rap 19013 pop', 'ballad 19014 rap', 'pop rap', 'new york', 'east coast 19015 pop 19016 pop', 'rock', 'ballad', 'pop-rock', 'canada 19017 pop', 'teen pop', 'disney', 'tv', 'soundtrack', 'pop-rock 19018 rock', 'funk rock', 'hard rock', 'producer', 'adult alternative', 'soul', 'alternative rock 19019 country', 'pop 19020 pop', 'r&b 19021 pop 19022 country', 'rock 19023 country', 'acoustic', 'piano', 'easy listening', 'adult contemporary', 'ballad', 'soundtrack 19024 pop', 'rock', 'punk rock', 'teen pop', 'pop-rock 19025 country 19026 rap', 'hardcore hip-hop', 'gangsta rap', 'hip-hop', 'trap', 'crunk', 'dirty south 19027 pop', 'rap', 'hip-hop', 'reggae 19028 r&b', 'pop', 'rap', 'dirty south', 'atlanta', 'crunk', 'singer-songwriter 19029 pop', 'en español 19030 rap', 'hip-hop', 'conscious hip-hop', 'piano', 'lullaby 19031 country 19032 r&b', 'singer-songwriter', 'soul', 'soul pop 19033 rap', 'hip-hop', 'hardcore hip-hop', 'remix', 'gangsta rap', 'west coast 19034 r&b', 'adult contemporary', 'ballad', 'easy listening', 'piano', 'singer-songwriter', 'soul 19035 rock', 'pop', 'adult contemporary', 'blue-eyed soul', 'jazz fusion', 'soul 19036 r&b', 'rap', 'g-funk', 'west coast', 'funk 19037 r&b', 'rap 19038 r&b', 'rap', 'east coast', 'gangsta rap', 'producer 19039 pop 19040 pop', 'r&b 19041 r&b 19042 country', 'bluegrass', 'honky tonk', 'pop country 19043 r&b', 'pop', 'soul', 'soul pop 19044 rap', 'hardcore hip-hop', 'hip-hop', 'dirty south', 'atlanta', 'trap 19045 rap 19046 rap', 'dirty south', 'hip-hop 19047 r&b', 'pop', 'singer-songwriter', 'soul pop 19048 r&b', 'latin pop 19049 rap', 'hip-hop', 'conscious hip-hop 19050 rock', 'australia', 'piano', 'ballad', 'adult alternative', 'alternative rock', 'pop-rock 19051 pop 19052 country 19053 r&b', 'rap', 'pop rap', 'new york', 'east coast 19054 pop 19055 r&b', 'rap 19056 rock', 'alternative rock 19057 country 19058 rock', 'country 19059 rock', 'adult alternative', 'alternative', 'alternative rock', 'post-punk revival', 'new wave 19060 rock 19061 rock', 'metal', 'alternative metal', 'emo', 'alternative rock 19062 pop', 'rock', 'piano rock', 'post-britpop', 'british rock', 'easy listening', 'alternative', 'ballad', 'piano', 'pop-rock', 'alternative rock', 'uk 19063 rock', 'folk rock', 'folk pop', 'folk', 'soft rock', 'ballad', 'adult contemporary', 'easy listening', 'alternative rock', 'pop-rock 19064 pop 19065 country 19066 country', 'rock', 'ballad 19067 rap', 'west coast', 'gangsta rap', 'conscious hip-hop 19068 rock', 'emo', 'alternative rock', 'pop-punk 19069 rock', 'stoner rock', 'hard rock', 'alternative rock 19070 country 19071 rock', 'pop-rock 19072 rock', 'alternative rock 19073 rock', 'metal', 'alternative metal', 'punk rock', 'post-grunge', 'hard rock 19074 pop', 'pop-rock 19075 r&b 19076 pop', 'r&b', 'go-go', 'funk', 'singer-songwriter 19077 rock 19078 pop', 'r&b', 'rap', 'west coast', 'funk 19079 country', 'pop', 'pop country 19080 rap', 'dipset', 'east coast 19081 rock', 'punk rock', 'pop-punk 19082 rock', 'alternative rock 19083 pop 19084 rock', 'electro-pop', 'alternative dance', 'indie pop', 'synth-pop', 'indie electronic', 'indie rock 19085 rap', 'r&b', 'soul 19086 country', 'rock 19087 rap', 'hardcore hip-hop', 'hip-hop', 'crunk', 'dirty south', 'memes 19088 rock', 'synth rock', 'garage rock', 'alternative rock', 'sverige', 'dance punk', 'garage rock revival', 'pop-rock', 'indie pop', 'indie rock 19089 rap', 'r&b', 'soul 19090 country', 'pop', 'pop country 19091 rap 19092 rock', 'singer-songwriter', 'island music', 'adult alternative', 'acoustic', 'folk rock 19093 rap 19094 r&b 19095 pop', 'r&b', 'soul', 'soul pop 19096 r&b', 'rap', 'dirty south', 'atlanta', 'crunk 19097 r&b', 'rap 19098 rock', 'power pop', 'canada', 'pop-punk 19099 country 19100 rap', 'soundtrack', 'dirty south', 'underground hip-hop 19101 pop', 'rap', 'east coast 19102 rap', 'hardcore hip-hop', 'east coast 19103 pop 19104 r&b', 'neo soul 19105 rock', 'art rock', 'alternative rock', 'progressive rock 19106 r&b', 'rap', 'singer-songwriter', 'atlanta', 'dirty south 19107 rock', 'hard rock', 'experimental rock', 'alternative rock', 'alternative 19108 rap', 'new york', 'east coast', 'pop rap 19109 rap', 'east coast', 'new york', 'hardcore hip-hop', 'hip-hop', 'beef 19110 r&b', 'singer-songwriter', 'soul pop', 'soul 19111 country 19112 rock', 'alternative rock 19113 country', 'rock 19114 country 19115 rock', 'post-grunge', 'alternative rock', 'hard rock 19116 pop', 'beef', 'teen pop', 'dance-pop', 'dance', 'funk 19117 r&b', 'pop', 'producer 19118 country 19119 rock', 'hard rock', 'post-grunge', 'alternative metal 19120 rock', 'alternative dance', 'alternative rock', 'industrial rock 19121 r&b', 'pop', 'funk', 'funk-pop', 'soul pop', 'soul 19122 rock', 'pop', 'latin music', 'colombia', 'en español 19123 rock', 'protest songs', 'soundtrack', 'pop-rock', 'alternative rock', 'punk rock', 'pop-punk 19124 pop', 'rock', 'alternative rock', 'power pop', 'pop-punk', 'pop-rock 19125 rock', 'singer-songwriter', 'heartland rock', 'folk', 'folk rock 19126 rock', 'thrash metal', 'alternative metal', 'metal 19127 r&b', 'pop', 'ballad', 'soul', 'soul pop 19128 r&b 19129 pop', 'rock', 'pop-rock 19130 rap', 'east coast', 'hip-hop', 'hardcore hip-hop 19131 rock', 'alternative rock', 'ireland 19132 pop', 'electronic rock', 'dance-pop 19133 pop', 'adult contemporary', 'soft rock', 'ballad', 'pop-rock', 'boy band 19134 pop', 'rock', 'alternative rock', 'pop-rock 19135 country', 'ballad', 'cover 19136 country 19137 rock', 'emo', 'pop-punk', 'post-hardcore', 'cover 19138 rap 19139 rock', 'heavy metal', 'metal', 'alternative metal 19140 pop', 'rock', 'singer-songwriter', 'orchestral', 'indie', 'indie pop', 'adult contemporary', 'alternative rock', 'ballad', 'soundtrack', 'pop-rock 19141 r&b', 'pop 19142 pop 19143 country 19144 r&b', 'soul', 'soul pop 19145 rock', 'post-britpop', 'indie', 'alternative', 'uk', 'alternative rock', 'indie rock 19146 pop', 'american idol', 'ballad', 'cover 19147 rock', 'hard rock', 'alternative rock', 'blues rock', 'garage rock', 'indie rock 19148 rock', 'country', 'ballad', 'power pop', 'singer-songwriter 19149 r&b', 'rap 19150 pop', 'rap 19151 rock', 'colombia', 'reggaetón', 'latin pop', 'en español 19152 rap 19153 rap 19154 rock 19155 rock', 'post-grunge', 'hard rock', 'alternative rock 19156 pop', 'r&b', 'rap', 'hip-hop', 'dance', 'electronic', 'electro-funk', 'electro-pop 19157 r&b', 'pop', 'pop-rock', 'tv', 'disney', 'soundtrack 19158 rap', 'producer 19159 r&b', 'soul 19160 pop', 'singer-songwriter', 'adult contemporary', 'easy listening', 'jazz 19161 country 19162 rap', 'screen', 'soundtrack', 'hip-hop 19163 pop', 'rap', 'rock', 'uk', 'electronic rock', 'funk rock', 'art pop', 'hip-hop', 'trip-hop', 'alternative', 'rap rock', 'alternative rock 19164 r&b', 'rap', 'hip-hop 19165 r&b', 'pop', 'ballad 19166 r&b', 'rap 19167 pop 19168 country', 'rock', 'singer-songwriter', 'honky tonk 19169 pop', 'trance', 'electronic', 'remix 19170 rap', 'east coast', 'hip-hop 19171 rap 19172 country 19173 rap 19174 r&b', 'hip-hop 19175 rock', 'country', 'pop country', 'singer-songwriter 19176 rap 19177 country', 'rock 19178 country 19179 r&b', 'pop', 'dancehall 19180 pop 19181 rap', 'hip-hop 19182 rap', 'atlanta', 'dirty south', 'gangsta rap', 'trap 19183 rap 19184 rap', 'r&b', 'pop', 'spanish rap', 'latin pop', 'latin music', 'latin urban', 'puerto rico', 'reggaetón', 'en español 19185 rap', 'hardcore hip-hop', 'gangsta rap', 'east coast', 'hip-hop 19186 rock', 'nu-metal', 'alternative metal', 'alternative rock 19187 rap 19188 rap', 'freestyle', 'hip-hop 19189 rap', 'east coast', 'dirty south', 'trap', 'atlanta 19190 r&b 19191 country', 'ballad 19192 country', 'rock', 'singer-songwriter', 'honky tonk 19193 pop 19194 country', 'singer-songwriter', 'honky tonk 19195 rock', 'emo pop', 'punk rock', 'alternative rock', 'pop-punk 19196 pop', 'uk 19197 pop 19198 rap', 'hip-hop 19199 r&b', 'rap 19200 country 19201 rock', 'post-punk revival', 'indie rock 19202 rock', 'alternative', 'punk rock', 'alternative rock', 'pop-punk 19203 country 19204 country 19205 pop', 'country', 'rock', 'soundtrack', 'pop country 19206 r&b 19207 pop', 'synth-pop', 'new wave 19208 country', 'rock 19209 pop 19210 rap', 'dirty south 19211 rock', 'blue-eyed soul', 'singer-songwriter', 'soft rock 19212 r&b', 'rock', 'pop 19213 rap', 'atlanta', 'dirty south 19214 rock 19215 rap', 'dirty south 19216 rap 19217 rap', 'posse cut', 'atlanta', 'east coast', 'motown', 'trap 19218 rap', 'hip-hop', 'east coast', 'remix 19219 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 19220 rock 19221 rock', 'alternative rock', 'christian', 'pop-punk', 'pop-rock', 'christian rock 19222 r&b', 'rap', 'hip-hop', 'neo soul', 'producer 19223 rap', 'patois', 'reggae', 'soundtrack', 'jamaica', 'dancehall 19224 pop 19225 rock', 'nu-metal', 'metal', 'hard rock', 'alternative metal', 'south africa', 'alternative', 'alternative rock', 'post-grunge 19226 r&b', 'rap 19227 pop', 'rock', 'emo', 'pop-punk', 'alternative rock 19228 r&b', 'rap', 'dirty south', 'florida rap 19229 rap 19230 r&b 19231 country', 'ballad', 'power pop 19232 pop 19233 rock', 'alternative', 'pop-rock', 'adult contemporary', 'adult alternative', 'alternative rock', 'punk rock 19234 country', 'honky tonk 19235 r&b', 'rap 19236 r&b', 'rap 19237 country', 'southern rock 19238 pop', 'soundtrack', 'broadway', 'musicals 19239 pop', 'eurodance', 'memes 19240 pop 19241 country 19242 rock', 'adult alternative', 'pop-rock', 'experimental folk', 'electronic rock', 'alternative rock', 'alternative 19243 r&b 19244 pop', 'en español 19245 r&b', 'rap', 'east coast', 'dmv', 'crunk 19246 rock', 'art rock', 'pop-rock', 'post-punk revival', 'alternative', 'alternative rock', 'new wave 19247 rap', 'underground hip-hop', 'hip-hop', 'dirty south', 'trap 19248 r&b 19249 pop', 'dance-pop', 'electro-pop', 'pop-rock 19250 rap 19251 pop', 'glam rock', 'pop-rock 19252 rap', 'cuba', 'dirty south 19253 country', 'ballad 19254 country', 'ballad', 'cover', 'adult contemporary 19255 pop', 'singer-songwriter', 'pop-rock', 'ballad 19256 rock', 'acoustic', 'adult contemporary', 'alternative rock', 'post-grunge', 'pop-rock', 'memes 19257 rock', 'uk', 'british rock', 'scotland', 'garage rock revival', 'dance punk', 'post-punk revival', 'indie rock 19258 rock', 'pop', 'jamaica', 'dancehall', 'reggae 19259 country', 'singer-songwriter 19260 r&b', 'rap', 'hip-hop 19261 rap 19262 rap', 'pop rap', 'new york', 'east coast 19263 pop 19264 rock', 'post-grunge', 'alternative rock', 'hard rock 19265 pop', 'punk rock', 'pop-rock 19266 country', 'pop 19267 rap 19268 rap', 'posse cut', 'remix', 'gangsta rap', 'dirty south', 'hip-hop 19269 rap', 'dirty south', 'trap 19270 country 19271 country', 'rock', 'singer-songwriter', 'ballad', 'honky tonk 19272 rap', 'reggae', 'hardcore hip-hop', 'east coast 19273 rap 19274 rock', 'pop', 'alternative rock 19275 pop', 'rock', 'british rock', 'post-britpop', 'piano', 'alternative pop', 'alternative', 'uk', 'ballad', 'alternative rock 19276 country', 'rock 19277 rock 19278 rock', 'pop 19279 rock', 'latin rock 19280 rap 19281 rock 19282 rock', 'pop-rock', 'hard rock 19283 country', 'rock', 'adult contemporary', 'easy listening', 'ballad', 'memorial 19284 r&b 19285 pop', 'r&b', 'soul', 'soul pop 19286 r&b', 'rap', 'dirty south', 'florida rap', 'hardcore hip-hop', 'hip-hop 19287 pop 19288 rock', 'heavy metal', 'nu-metal 19289 country', 'rock', 'power pop', 'ballad 19290 country 19291 rock', 'pop-rock', 'indie rock 19292 rap', 'gangsta rap', 'east coast 19293 country', 'rock 19294 country', 'comedy', 'satire', 'honky tonk 19295 rock', 'metal', 'alternative metal', 'industrial', 'nu-metal 19296 rap', 'pop', 'latin urban', 'latin pop', 'latin music 19297 rap', 'atlanta', 'crunk', 'dirty south 19298 pop 19299 r&b', 'pop', 'soul 19300 pop', 'r&b', 'girl group', 'ballad 19301 country 19302 r&b', 'pop 19303 rock', 'dance punk', 'indie rock', 'post-punk', 'punk rock', 'surf punk', 'dance', 'indie', 'garage rock', 'post-punk revival', 'hard rock 19304 country', 'rock', 'ballad 19305 country 19306 rock', 'dance punk', 'industrial rock', 'alternative dance', 'alternative rock 19307 pop 19308 r&b', 'singer-songwriter', 'soul pop 19309 pop', 'rock', 'downtempo', 'synth rock', 'synth-pop', 'british rock', 'uk', 'alternative pop', 'alternative', 'alternative rock 19310 rap', 'soul pop', 'piano', 'producer 19311 pop', 'dance-pop', 'synth-pop', 'electronica', 'electronic', 'dance 19312 rock', 'emo', 'punk rock', 'pop-punk 19313 rap', 'soundtrack', 'east coast', 'hip-hop', 'hardcore hip-hop 19314 rock', 'pop-rock 19315 pop', 'electronic', 'dance-pop', 'pop-rock 19316 r&b', 'pop', 'electro-pop', 'soul pop', 'soul 19317 country', 'honky tonk 19318 rock', 'metal', 'alternative rock', 'alternative metal 19319 rap 19320 pop', 'r&b', 'rap', 'funk 19321 country 19322 rap', 'soundtrack', 'hardcore hip-hop', 'gangsta rap', 'east coast 19323 rock', 'post-grunge', 'alternative rock 19324 rock', 'heavy metal', 'metal', 'hard rock 19325 rock', 'pop', 'soft rock', 'acoustic', 'pop-rock', 'uk', 'adult contemporary', 'adult alternative', 'alternative pop', 'alternative rock', 'piano', 'ballad', 'singer-songwriter 19326 country', 'ballad', 'pop country', 'easy listening', 'adult contemporary', 'christian 19327 rap', 'pop', 'r&b 19328 rap', 'posse cut', 'hip-hop', 'crunk', 'dirty south 19329 rap', 'dirty south', 'trap 19330 rock 19331 rock', 'pop', 'pop-punk', 'alternative rock', 'pop-rock', 'ballad 19332 rap', 'horrorcore', 'hip-hop', 'conscious hip-hop 19333 rap 19334 pop', 'r&b', 'soul', 'soul pop 19335 country 19336 pop 19337 rap', 'puerto rico', 'latin urban', 'latin music', 'reggaetón', 'en español 19338 country', 'rock 19339 r&b 19340 country', 'rock 19341 country 19342 r&b', 'rap', 'soul pop 19343 r&b', 'pop', 'adult contemporary', 'singer-songwriter', 'uk', 'soundtrack 19344 r&b 19345 rap', 'dirty south', 'hip-hop 19346 rap', 'pop', 'puerto rico', 'latin urban', 'latin music', 'latin pop', 'reggaetón', 'en español 19347 pop', 'eurotrance', 'deutschland', 'electronic', 'dance 19348 r&b', 'rap', 'hip-hop', 'hardcore hip-hop', 'remix', 'east coast 19349 rap', 'bass music', 'latin urban', 'dirty south', 'hip-hop 19350 r&b', 'pop', 'puerto rico', 'dominican republic', 'latin urban', 'reggaetón', 'bachata', 'latin music', 'en español 19351 rock', 'country', 'feminism', 'singer-songwriter 19352 rap 19353 rap', 'g-funk', 'hip-hop', 'memes 19354 pop', 'en español 19355 rap', 'dirty south', 'hip-hop 19356 rap', 'hardcore hip-hop', 'east coast', 'hip-hop 19357 rock', 'pop-punk', 'emo', 'alternative rock 19358 country', 'rock', 'ballad', 'adult contemporary', 'memes 19359 country', 'power pop', 'ballad', 'singer-songwriter 19360 rap', 'atlanta', 'dirty south 19361 country', 'piano', 'ballad', 'singer-songwriter 19362 r&b', 'rap 19363 pop', 'r&b', 'dmv 19364 country 19365 rock', 'pop-punk', 'christian rock', 'christian 19366 pop', 'alternative', 'electronic', 'art pop', 'synth-pop', 'alternative dance', 'dance-pop', 'electro-pop', 'electro house', 'electronica', 'electro-funk', 'uk', 'electro 19367 rap 19368 rock', 'gothic rock', 'pop-punk', 'emo', 'alternative rock 19369 rap', 'patois', 'reggae', 'jamaica', 'dancehall 19370 rap', 'posse cut', 'gangsta rap', 'dirty south', 'hip-hop 19371 pop 19372 country', 'rock 19373 pop', 'rock', 'pop-rock 19374 pop', 'pop-rock 19375 pop', 'rock', 'easy listening', 'lullaby', 'jazz fusion', 'acoustic', 'pop-rock', 'soundtrack', 'folk rock', 'folk', 'adult alternative', 'adult contemporary 19376 country 19377 country', 'rock 19378 rock 19379 rap 19380 country', 'rock 19381 rock 19382 r&b', 'ballad', 'soul', 'soul pop 19383 rap', 'atlanta', 'dirty south 19384 pop', 'rap 19385 rock', 'rap', 'adult alternative', 'alternative rock', 'reggae 19386 pop', 'musicals', 'tv', "children's music", 'disney', 'soundtrack 19387 pop', 'tv', "children's music", 'teen pop', 'musicals', 'disney', 'soundtrack 19388 pop', 'tv', 'musicals', 'teen pop', 'disney', 'soundtrack 19389 pop', 'tv', 'teen pop', "children's music", 'musicals', 'disney', 'soundtrack 19390 pop', 'tv', 'teen pop', "children's music", 'musicals', 'soundtrack', 'disney 19391 rap', 'rock', 'christian rap', 'rap rock', 'christian metal', 'christian rock', 'christian', 'hard rock', 'alternative rock 19392 pop', 'tv', "children's music", 'teen pop', 'salsa', 'musicals', 'disney', 'soundtrack 19393 pop', 'musicals', 'tv', 'teen pop', "children's music", 'disney', 'acoustic', 'piano', 'soundtrack 19394 pop', 'tv', 'musicals', "children's music", 'teen pop', 'ballad', 'disney', 'soundtrack 19395 pop', 'techno', 'electro-pop', 'funk', 'new wave', 'synth-pop 19396 pop', 'rock', 'adult alternative', 'alternative rock', 'pop-rock 19397 pop', 'pop-rock 19398 r&b 19399 country', 'rock', 'adult contemporary', 'cover', 'ballad', 'pop country', 'soundtrack 19400 rap 19401 pop', 'ballad', 'uk 19402 r&b', 'pop', 'rock', 'alternative r&b', 'alternative dance', 'pop-punk', 'indie pop', 'alternative pop', 'pop country', 'dance-pop', 'pop-rock 19403 pop', 'rock', 'soft rock', 'ballad', 'canada', 'singer-songwriter', 'easy listening', 'adult contemporary', 'memes', 'piano', 'pop-rock 19404 pop 19405 pop', 'synth-pop', 'dance-pop', 'dance 19406 rap', 'producer 19407 rock 19408 pop', 'rock', 'british rock', 'post-britpop', 'uk', 'alternative rock', 'alternative 19409 pop', 'rock', 'adult alternative', 'adult contemporary', 'pop-rock', 'alternative rock 19410 rock', 'alternative rock', 'post-grunge 19411 rap 19412 pop 19413 rap 19414 rap', 'memphis', 'dirty south 19415 rock', 'pop', 'disney', 'post-grunge', 'alternative rock', 'soundtrack', 'pop-rock 19416 rap', 'hip-hop', 'bay area', 'crunk', 'west coast', 'hyphy 19417 pop', 'r&b', 'rock', 'electronic', 'funk 19418 pop', 'electronica', 'synth-pop', 'dance-pop', 'electronic', 'dance 19419 r&b', 'rap', 'remix', 'east coast', 'hip-hop', 'hardcore hip-hop 19420 pop', 'adult contemporary', 'ballad', 'pop-rock 19421 rap 19422 rock', 'finnish rock', 'suomi', 'gothic rock 19423 rock', 'country 19424 rap', 'atlanta', 'beef', 'dirty south', 'gangsta rap', 'producer', 'trap 19425 r&b', 'neo soul', 'soul 19426 rock', 'post-grunge 19427 rap 19428 country', 'ballad 19429 rock', 'baroque pop', 'alternative', 'alternative rock', 'pop-rock', 'pop-punk 19430 pop 19431 rock', 'uk', 'singer-songwriter', 'folk rock', 'adult contemporary', 'pop-rock', 'adult alternative', 'blue-eyed soul', 'indie rock 19432 r&b', 'ballad', 'neo soul', 'soul 19433 pop 19434 rock 19435 country', 'pop country 19436 rock', 'post-grunge', 'grunge', 'alternative rock', 'post-punk', 'hard rock 19437 r&b', 'pop', 'latin music', 'colombia', 'salsa', 'latin pop 19438 rock', 'electro-pop', 'synth rock', 'pop-rock', 'pop-punk 19439 country', 'rock 19440 pop 19441 rock', 'post-grunge', 'alternative rock', 'nu-metal', 'alternative metal 19442 rap 19443 rock 19444 rock', 'pop 19445 rock', 'emo pop', 'punk rock', 'pop-punk', 'pop-rock 19446 country', 'rock 19447 rap', 'dirty south', 'atlanta', 'crunk 19448 rap', 'pop', 'latin urban', 'latin pop', 'latin music', 'en español', 'reggaetón 19449 rock', 'country', 'cover', 'ballad 19450 rap 19451 pop 19452 rock 19453 pop', 'rock', 'soft rock', 'mental health', 'easy listening', 'piano', 'adult contemporary', 'adult alternative', 'pop-rock 19454 pop', 'en español 19455 rap', 'dirty south 19456 r&b', 'rap 19457 country', 'rock 19458 rock', 'adult alternative', 'alternative rock', 'pop-rock', 'funk rock 19459 rock', 'industrial rock', 'alternative rock 19460 r&b', 'traducción al español 19461 r&b', 'rap', 'alternative 19462 r&b', 'rap 19463 rock 19464 r&b', 'rap 19465 country', 'pop', 'singer-songwriter', 'easy listening', 'adult contemporary', 'ballad', 'pop country 19466 r&b', 'atlanta 19467 pop', 'pop-rock 19468 rap', 'producer 19469 country', 'cover 19470 rock', 'alternative rock 19471 rock', 'space rock', 'pop-rock 19472 rap', 'r&b', 'pop', 'singer-songwriter', 'soul pop 19473 r&b 19474 rap 19475 country', 'rock 19476 pop', 'soft rock', 'easy listening', 'adult contemporary', 'jazz fusion', 'cover', 'jazz 19477 country 19478 r&b', 'rap', 'dirty south', 'funk', 'hip-hop 19479 rock', 'alternative', 'alternative rock', 'emo 19480 r&b 19481 pop', 'r&b', 'singer-songwriter', 'dirty south', 'funk', 'soul pop', 'soul 19482 rock', 'canada', 'alternative rock 19483 country', 'pop country', 'ballad 19484 country', 'rock 19485 r&b', 'pop', 'ballad 19486 pop 19487 rock', 'post-hardcore', 'alternative rock', 'pop-punk', 'emo 19488 r&b', 'pop', 'rap', 'dance-pop', 'synth-pop', 'canada 19489 pop', 'pop country 19490 rap', 'r&b 19491 pop', 'r&b 19492 rock', 'alternative rock', 'hard rock 19493 rap', 'dirty south', 'trap 19494 pop', 'r&b', 'rock', 'alternative pop', 'alternative r&b', 'adult alternative', 'alternative rock', 'adult contemporary', 'electronic', 'neo soul', 'soul', 'soul pop 19495 rap 19496 country', 'pop', 'adult contemporary', 'easy listening', 'memorial 19497 rock', 'funk rock', 'hard rock 19498 rap', 'pop', 'remix 19499 rock', 'adult alternative', 'pop-rock', 'alternative rock', 'psychedelic rock', 'garage rock', 'indie rock 19500 country', 'rock 19501 r&b', 'rap', 'hip-hop', 'crunk', 'hyphy', 'bay area', 'west coast 19502 pop', 'rock', 'british rock', 'uk', 'post-britpop', 'scotland', 'ireland', 'alternative pop', 'ballad', 'adult alternative', 'adult contemporary', 'easy listening 19503 pop', 'pop-rock 19504 country', 'rock 19505 country 19506 r&b', 'rap 19507 rock', 'pop-rock', 'alternative rock 19508 country 19509 pop 19510 country', 'power pop', 'bluegrass 19511 pop 19512 pop 19513 rap 19514 country 19515 r&b', 'rap', 'reggae', 'soundtrack', 'singer-songwriter', 'jamaica', 'dancehall 19516 r&b', 'rap', 'east coast 19517 country', 'rock', 'disney', 'soundtrack', 'pop country', 'cover 19518 rap', 'chicago rap', 'conscious hip-hop', 'hip-hop 19519 pop', 'rock', 'r&b', 'ireland', 'soul 19520 rap 19521 pop 19522 r&b', 'pop', 'blues', 'jazz', 'soul', 'funk 19523 rap', 'posse cut', 'dirty south 19524 pop', 'uk 19525 rap', 'dungeon synth', 'soul', 'funk', 'hip-hop', 'soundtrack', 'atlanta', 'dirty south 19526 pop', 'en español 19527 rap', 'gangsta rap', 'west coast 19528 r&b', 'rap 19529 r&b', 'rap 19530 pop', 'rap', 'puerto rico', 'latin music', 'latin pop', 'latin urban', 'reggaetón', 'en español 19531 rock', 'pop', 'adult alternative', 'ballad', 'singer-songwriter', 'alternative pop', 'alternative rock', 'pop-rock', 'uk 19532 pop', 'soul pop', 'soul 19533 r&b', 'rap', 'pop', 'singer-songwriter', 'funk 19534 rap 19535 pop', 'r&b', 'remix', 'reggae', 'dancehall 19536 country', 'pop country 19537 pop', 'reggae 19538 rap', 'pop', 'r&b 19539 rock', 'alternative rock', 'industrial rock', 'industrial metal', 'industrial', 'nu-metal 19540 pop', 'rock', 'post-britpop', 'protest songs', 'adult alternative', 'alternative rock', 'uk 19541 pop', 'theme song', 'pop-rock 19542 country 19543 pop', 'cover 19544 pop', 'pop-rock', 'synth-pop', 'dance 19545 pop 19546 pop', 'r&b', 'uk', 'singer-songwriter', 'chill', 'alternative r&b', 'easy listening', 'adult alternative', 'adult contemporary', 'soul pop', 'neo soul 19547 rap', 'producer', 'dirty south 19548 country', 'rock', 'ballad 19549 country 19550 r&b', 'pop', 'funk-pop', 'funk', 'singer-songwriter', 'electro-pop 19551 rap', 'crunk', 'dirty south 19552 country 19553 country', 'rock', 'outlaw country 19554 rock 19555 rock', 'politics', 'protest songs', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'pop-rock', 'soul', 'blues rock 19556 rock', 'punk rock', 'pop-punk 19557 rock', 'indie rock', 'alternative rock', 'pop-rock 19558 country', 'rock 19559 rock', 'adult alternative', 'adult contemporary', 'singer-songwriter', 'alternative', 'alternative pop', 'alternative rock', 'ballad 19560 rock', 'alternative rock 19561 r&b', 'ballad 19562 pop', 'pop-rock 19563 rock', 'ballad', 'adult contemporary', 'pop-rock', 'alternative rock', 'post-grunge 19564 rock', 'hard rock', 'funk rock', 'alternative rock', 'post-grunge 19565 rock', 'pop', 'méxico', 'en español 19566 rap', 'pop', 'dance', 'hip-hop', 'dance-pop 19567 pop 19568 country 19569 pop', 'teen pop', 'tv', 'disney', 'soundtrack 19570 rock', 'pop-punk 19571 pop', 'r&b 19572 rap', 'hip-hop 19573 rap 19574 country', 'rock 19575 rock', 'hard rock', 'post-grunge', 'alternative rock', 'alternative metal 19576 r&b', 'rap 19577 pop', 'pop-rock', 'teen pop', 'tv', 'theme song', 'disney', 'soundtrack 19578 pop', 'r&b', 'rap', 'singer-songwriter', 'atlanta', 'dirty south', 'soundtrack', 'dance', 'electro-pop 19579 pop', 'rap 19580 rap 19581 rock', 'post-grunge', 'alternative rock 19582 r&b', 'rap', 'dirty south', 'atlanta 19583 country 19584 rock', 'heartland rock', 'post-punk revival', 'new wave', 'alternative', 'alternative rock 19585 country 19586 r&b', 'soundtrack', 'dmv 19587 r&b', 'funk 19588 rock', 'country 19589 rap 19590 rap 19591 r&b', 'hip-hop 19592 rock 19593 rap 19594 rock', 'pop-rock', 'adult alternative', 'alternative rock', 'funk rock 19595 rap', 'west coast', 'reggae', 'gangsta rap 19596 pop', 'r&b 19597 r&b', 'pop', 'latin pop', 'dance-pop', 'disney', 'soundtrack 19598 pop 19599 r&b', 'pop 19600 country 19601 country 19602 r&b', 'pop', 'tv', 'musicals', 'dance-pop', 'disney', 'soundtrack 19603 r&b', 'rap', 'hip-hop', 'soul pop', 'atlanta', 'dirty south 19604 rap', 'west coast', 'hyphy 19605 country', 'singer-songwriter 19606 country', 'rock', 'ballad 19607 rap', 'gaming 19608 rock', 'pop-punk', 'power pop', 'pop-rock', 'indie rock 19609 country', 'rock 19610 r&b', 'rap 19611 rap', 'trap 19612 rap 19613 r&b', 'funk', 'soul', 'hip-hop', 'atlanta', 'dirty south', 'blues 19614 r&b', 'pop 19615 pop 19616 pop', 'country', 'ballad', 'singer-songwriter', 'pop country 19617 pop 19618 rap', 'r&b', 'pop', 'singer-songwriter', 'electro-pop 19619 rap', 'pop 19620 rap', 'dance', 'crunk', 'dirty south', 'atlanta 19621 country', 'rock', 'orchestral', 'ballad 19622 pop', 'canada', 'electro-pop', 'new wave', 'electronic rock', 'dance-pop 19623 rap', 'west coast', 'indie rap', 'underground hip-hop', 'alternative', 'hip-hop 19624 pop 19625 rock', 'emo', 'dark pop', 'punk rock', 'alternative rock', 'pop-punk 19626 pop 19627 pop', 'latin music', 'latin pop', 'méxico', 'pop-rock', 'en español 19628 country', 'rock', 'power pop', 'ballad', 'soundtrack 19629 rap', 'atlanta', 'dirty south', 'hip-hop', 'hardcore hip-hop 19630 country', 'rock', 'singer-songwriter', 'ballad 19631 pop 19632 pop', 'rap', 'dance-pop', 'dance', 'electro-pop', 'electronic 19633 pop 19634 r&b', 'rap 19635 country', 'cover 19636 r&b', 'soul 19637 rap', 'west coast 19638 rap', 'hip-hop', 'nerdcore', 'satire', 'comedy', 'parody 19639 r&b', 'pop', 'dance 19640 rock', 'alternative rock', 'post-grunge', 'canada', 'hard rock 19641 r&b', 'rap', 'west coast 19642 rock', 'ballad', 'pop-rock', 'alternative rock 19643 r&b 19644 pop', 'soul pop', 'ballad 19645 r&b', 'rap', 'dmv 19646 rock', 'punk rock', 'pop-punk', 'comedy', 'parody 19647 rap 19648 rock', 'pop-rock 19649 rap', 'east coast', 'jazz rap 19650 r&b', 'pop 19651 country', 'rock', 'ballad', 'singer-songwriter 19652 pop 19653 country 19654 rock 19655 country', 'americana', 'ballad', 'honky tonk 19656 r&b', 'pop', 'rap 19657 rock 19658 pop', 'r&b', 'easy listening', 'bubblegum pop', 'neo soul', 'soul pop', 'ballad', 'adult contemporary 19659 r&b', 'hip-hop 19660 pop', 'méxico', 'latin music', 'latin pop 19661 pop', 'teen pop', 'tv', 'disney', 'soundtrack 19662 r&b', 'soul 19663 pop', 'teen pop', 'tv', 'disney', 'soundtrack 19664 pop', 'teen pop', 'tv', 'disney', 'soundtrack 19665 pop', 'tv', 'teen pop', 'disney', 'soundtrack 19666 rock 19667 pop', 'teen pop', 'tv', 'disney', 'soundtrack 19668 pop', 'teen pop', 'tv', 'disney', 'soundtrack 19669 pop', 'singer-songwriter', 'musicals', 'broadway', 'electro-pop 19670 rap', 'dirty south', 'east coast', 'gangsta rap', 'hardcore hip-hop', 'hip-hop', 'new york 19671 rock 19672 country 19673 country 19674 rap', 'r&b', 'pop 19675 rap 19676 pop 19677 country', 'rock 19678 rock 19679 country', 'rock 19680 pop 19681 r&b', 'singer-songwriter', 'soul pop 19682 r&b', 'pop', 'dance 19683 pop', 'r&b', 'canada 19684 pop 19685 rock 19686 rock', 'en español 19687 rap 19688 rock', 'cover', 'ireland', 'alternative rock 19689 r&b', 'rap', 'hip-hop', 'hardcore hip-hop', 'gangsta rap', 'west coast 19690 rock', 'pop-punk', 'alternative rock', 'punk rock 19691 rap', 'dirty south', 'conscious hip-hop', 'hip-hop 19692 rap 19693 pop', 'rock', 'post-grunge', 'pop-rock 19694 rock', 'symphonic rock', 'alternative', 'orchestral', 'soundtrack', 'art rock', 'alternative rock 19695 pop', 'electro-pop', 'electronic', 'dance-pop', 'dance', 'jamaica', 'dancehall 19696 pop', 'disney', 'holiday', 'christmas 19697 rap 19698 rap 19699 pop', 'singer-songwriter', 'soundtrack', 'ballad', 'canada 19700 rock', 'hard rock', 'post-grunge', 'alternative metal', 'alternative rock 19701 rap', 'dirty south', 'gangsta rap', 'hip-hop 19702 r&b 19703 rap', 'florida rap', 'youtube', 'trap', 'uk rap', 'uk 19704 pop', 'méxico', 'latin music', 'latin pop', 'en español 19705 rap 19706 pop', 'latin pop', 'reggaetón', 'en español', 'latin music', 'argentina 19707 rock', 'alternative metal', 'post-grunge', 'hard rock', 'alternative rock 19708 country 19709 rap', 'electronic', 'shadyxv 19710 rock', 'christmas 19711 rap 19712 rap', 'piano', 'east coast 19713 pop 19714 rock', 'alternative rock 19715 rap', 'atlanta', 'trap 19716 country 19717 r&b', 'pop', 'singer-songwriter', 'ballad', 'blue-eyed soul', 'soul', 'soul pop 19718 country', 'ballad', 'cover 19719 pop 19720 rap', 'underground hip-hop', 'dirty south', 'hip-hop 19721 pop 19722 rock', 'post-hardcore', 'emo', 'pop-punk 19723 rock', 'emo', 'post-punk', 'electronic rock', 'alternative rock 19724 pop', 'ska', 'doo-wop 19725 pop', 'alternative pop', 'anti-folk', 'singer-songwriter', 'baroque pop', 'indie pop', 'indie', 'alternative 19726 rap', 'dirty south', 'hip-hop 19727 r&b', 'pop', 'ballad 19728 rap 19729 pop 19730 rock', 'pop-punk 19731 pop', 'rock', 'pop-rock 19732 rap 19733 pop', 'r&b', 'musicals', 'soundtrack 19734 rap', 'hip-hop 19735 pop', 'rap', 'rap rock', 'adult alternative', 'alternative pop', 'alternative 19736 r&b', 'pop', 'soul', 'swing', 'blues', 'jazz 19737 pop', 'disney', 'soundtrack', 'teen pop 19738 r&b', 'pop', 'dance-pop 19739 rap 19740 country 19741 rap', 'r&b', 'pop 19742 rock', 'protest songs', 'pop-rock', 'pop-punk', 'emo 19743 pop', 'disney', 'soundtrack 19744 rock 19745 r&b 19746 rap', 'hip-hop 19747 rap', 'hip-hop', 'new york', 'east coast', 'pop rap', 'crunk 19748 r&b', 'rap 19749 pop', 'r&b', 'rap', 'singer-songwriter', 'soul', 'soul pop 19750 rock', 'alternative rock 19751 pop', 'singer-songwriter', 'alternative pop', 'alternative', 'adult alternative', 'indie pop', 'uk', 'reggae 19752 rock', 'indie rock', 'indie pop 19753 country', 'honky tonk 19754 rock', 'post-hardcore', 'glam rock', 'hard rock', 'emo', 'alternative rock 19755 rock 19756 country', 'rock', 'singer-songwriter', 'honky tonk 19757 r&b', 'soul', 'neo soul', 'soul pop 19758 pop', 'boy band', 'cover', 'teen pop', 'pop-rock 19759 pop 19760 rock', 'dance rock', 'art rock', 'alternative rock', 'indie rock 19761 pop', 'teen pop 19762 country', 'pop 19763 pop', 'rock', 'uk 19764 rock', 'soft rock', 'soul jazz', 'ballad', 'jazz fusion', 'adult alternative', 'adult contemporary', 'blues', 'folk', 'jazz 19765 pop 19766 rap 19767 country', 'ballad', 'pop country 19768 r&b', 'pop', 'disney', 'soundtrack', 'dance-pop 19769 country', 'rock', 'pop country', 'singer-songwriter 19770 country', 'ballad 19771 country', 'ballad 19772 pop', 'soundtrack', 'acoustic', 'teen pop 19773 pop 19774 r&b', 'pop', 'rap', 'beef', 'canada', 'west coast', 'dance-pop', 'dance', 'electro-pop', 'electro 19775 rap 19776 rap', 'dance', 'atlanta', 'dirty south', 'crunk 19777 pop 19778 pop', 'r&b', 'singer-songwriter 19779 rock', 'producer', 'singer-songwriter', 'adult alternative', 'blues rock 19780 country', 'rock 19781 rock', 'post-punk revival', 'garage rock', 'adult alternative', 'alternative rock', 'indie rock', 'uk', 'post-punk 19782 r&b', 'rap 19783 rock', 'post-punk revival', 'new wave', 'pop-rock', 'alternative', 'synth-pop', 'alternative rock 19784 country', 'rock', 'ballad', 'pop country', 'power pop 19785 rap 19786 r&b', 'rap', 'hip-hop', 'crunk', 'producer', 'dirty south 19787 r&b 19788 pop 19789 rap 19790 country', 'rock 19791 pop', 'power pop', 'teen pop', 'pop-rock', 'pop-punk', 'canada 19792 pop 19793 pop 19794 r&b', 'rap', 'hip-hop 19795 rap', 'r&b', 'singer-songwriter', 'soul pop 19796 pop', 'rock', 'soft rock', 'post-grunge', 'soundtrack', 'pop-rock 19797 r&b 19798 rap', 'horrorcore', 'underground hip-hop 19799 pop', 'rock', 'pop-rock', 'alternative rock 19800 rock 19801 country', 'rock 19802 country', 'rock 19803 country', 'teen pop', 'ballad', 'pop country', 'singer-songwriter 19804 r&b 19805 pop', 'dance-pop', 'soundtrack', 'electro 19806 rock', 'electronic', 'electro-industrial', 'alternative rock', 'industrial rock 19807 pop', 'r&b', 'rap 19808 pop', 'r&b', 'trip-hop', 'neo soul', 'soul', 'jazz', 'uk', 'alternative', 'blues 19809 pop', 'r&b', 'alternative r&b', 'adult alternative', 'funk', 'soul jazz', 'soul pop', 'soul 19810 r&b', 'pop', 'spanish music 19811 r&b', 'rock 19812 pop', 'jazz 19813 pop', 'ballad 19814 country 19815 r&b', 'pop', 'soul 19816 rock', 'pop', 'adult contemporary', 'pop-rock 19817 country', 'ballad 19818 country 19819 rap', 'atlanta', 'florida rap', 'posse cut', 'hardcore hip-hop', 'gangsta rap', 'east coast', 'dirty south', 'hip-hop 19820 pop', 'disney', 'soundtrack 19821 rock', 'indie pop', 'indie', 'indie rock', 'soft rock', 'adult contemporary', 'teen pop', 'piano', 'easy listening', 'acoustic', 'ballad 19822 rap 19823 rap', 'gangsta rap', 'hardcore hip-hop', 'dirty south', 'hip-hop 19824 country 19825 pop', 'rock', 'uk 19826 rock', 'alternative metal', 'hard rock', 'alternative rock 19827 rock', 'hard rock', 'post-grunge', 'alternative metal 19828 rock', 'hard rock', 'alternative rock 19829 pop 19830 rock 19831 rap 19832 rock', 'pop', 'protest songs', 'adult contemporary', 'alternative dance', 'adult alternative', 'pop-rock', 'dance-pop 19833 rap', 'hip-hop 19834 country 19835 r&b', 'pop', 'electronic rock', 'electronic', 'ballad', 'adult contemporary', 'remix', 'pop-rock', 'producer 19836 r&b 19837 rock', 'pop-rock', 'emo', 'pop-punk 19838 rap 19839 pop', 'experimental', 'art pop', 'tribal', 'iceland', 'electronic 19840 pop', 'r&b', 'latin music', 'latin pop', 'en español 19841 rap', 'r&b', 'pop 19842 rap 19843 pop 19844 rap 19845 pop 19846 rap', 'atlanta', 'dirty south', 'rap rock 19847 country 19848 pop', 'ballad', 'pop-rock', 'canada 19849 country', 'rock 19850 country', 'pop 19851 country', 'honky tonk', 'ballad 19852 country', 'honky tonk', 'pop country', 'rockabilly', 'southern rock 19853 country', 'rock', 'gospel', 'christian', 'singer-songwriter 19854 rock', 'alternative rock 19855 country', 'charity', 'american idol', 'cover', 'ballad 19856 rock', 'pop-rock', 'glam rock 19857 rock', 'pop', 'alternative rock', 'protest songs', 'blues', 'garage punk', 'pop-rock 19858 pop 19859 r&b 19860 pop 19861 rap', 'dirty south 19862 rap 19863 rock', 'ballad 19864 rock', 'traditional', 'cover 19865 rap 19866 pop 19867 rap 19868 rock 19869 r&b', 'rap', 'hip-hop 19870 rap 19871 rap 19872 pop 19873 rock', 'heavy metal 19874 rap 19875 r&b', 'soul', 'neo soul', 'soul pop 19876 country', 'rock', 'singer-songwriter 19877 pop', 'latin pop', 'puerto rico', 'remix', 'latin urban', 'latin music', 'en español', 'reggaetón 19878 r&b', 'pop', 'singer-songwriter', 'bounce 19879 pop', 'canada', 'folk', 'ballad 19880 pop', 'ballad', 'acoustic', 'easy listening', 'singer-songwriter', 'adult contemporary 19881 rock', 'alternative rock', 'pop-punk', 'pop-rock 19882 rock', 'rap', 'rap rock', 'alternative rock 19883 rock', 'alternative rock', 'alternative metal 19884 pop', 'pop-rock', 'american idol', 'ballad 19885 pop 19886 rap 19887 rock 19888 r&b', 'pop', 'cover 19889 rock', 'pop', 'alternative rock', 'alternative pop 19890 r&b', 'pop', 'soul', 'cover 19891 r&b', 'jamaica', 'doo-wop 19892 pop', 'rap 19893 rap', 'east coast 19894 pop 19895 pop 19896 rap', 'pop', 'r&b', 'hip-hop 19897 rap', 'chicago rap', 'trap', 'hip-hop', 'electro-pop', 'producer 19898 r&b', 'pop', 'patois', 'dancehall 19899 rap', 'pop', 'dmv 19900 r&b 19901 country', 'r&b', 'rock 19902 r&b 19903 pop', 'teen pop', 'tv', 'disney', 'soundtrack 19904 r&b', 'pop', 'new wave 19905 country 19906 rap 19907 rock', 'alternative rock 19908 country', 'rock 19909 rock', 'hard rock', 'glam rock', 'emo', 'alternative rock', 'pop-punk 19910 pop 19911 r&b', 'rap', 'dirty south', 'florida rap', 'gangsta rap', 'hardcore hip-hop 19912 pop 19913 country', 'rock 19914 rock', 'uk', 'singer-songwriter 19915 r&b', 'rap', 'singer-songwriter', 'soul pop 19916 r&b', 'rap 19917 rock 19918 pop', 'tv', 'teen pop', 'disney', 'soundtrack 19919 pop', 'singer-songwriter', 'pop-rock', 'ballad 19920 pop', 'rock', 'new wave', 'electronic rock', 'pop-rock 19921 pop', 'soundtrack 19922 pop', 'tv', 'teen pop', 'disney', 'soundtrack 19923 r&b', 'pop', 'dancehall', 'dance-pop 19924 pop 19925 r&b', 'pop', 'tv', 'teen pop', 'disney', 'soundtrack 19926 rap 19927 r&b', 'pop', 'singer-songwriter', 'electro-pop', 'electro-funk 19928 r&b', 'pop', 'rap', 'dance-pop', 'pop rap', 'memes', 'dance 19929 country 19930 country', 'rock 19931 rock', 'teen pop', 'soundtrack', 'gaming', 'pop-punk', 'alternative rock 19932 country', 'rock 19933 rap', 'hip-hop', 'memes', 'atlanta', 'dirty south', 'dance', 'crunk 19934 rock', 'alternative metal', 'post-grunge', 'hard rock', 'alternative rock 19935 pop', 'teen pop', 'musicals', 'tv', 'disney', 'soundtrack 19936 r&b', 'rap 19937 pop', 'soundtrack', 'musicals', 'broadway 19938 r&b 19939 r&b', 'rap', 'singer-songwriter 19940 pop 19941 country', 'rock', 'comedy', 'satire 19942 pop', 'rap', 'chicago rap', 'dark pop', 'electro-pop', 'pop rap', 'electro house', 'electro-hop', 'electronic', 'house', 'producer 19943 rap', 'crunk 19944 country', 'rock 19945 country', 'rock', 'ballad 19946 country', 'singer-songwriter', 'ballad 19947 pop', 'rock', 'power pop', 'pop-punk', 'singer-songwriter', 'pop-rock 19948 pop 19949 rap 19950 country', 'rock', 'honky tonk', 'singer-songwriter 19951 country', 'singer-songwriter 19952 r&b', 'singer-songwriter', 'blue-eyed soul', 'soul 19953 rap', 'producer 19954 country', 'singer-songwriter', 'ballad', 'memorial 19955 rock', 'post-grunge', 'alternative', 'alternative rock', 'hard rock 19956 pop', 'rock', 'power pop', 'teen pop', 'singer-songwriter', 'pop-rock 19957 rap', 'atlanta', 'dirty south', 'soul 19958 rap 19959 pop', 'rock', 'adult contemporary', 'post-grunge', 'pop-rock', 'alternative', 'alternative rock 19960 rock', 'pop', 'adult alternative', 'pop-rock 19961 pop 19962 pop', 'rap 19963 pop', 'disney', 'musicals', 'brasil', 'em português 19964 pop 19965 pop 19966 pop 19967 pop', 'teen pop', 'musicals', 'tv', 'disney', 'soundtrack 19968 country', 'pop country', 'power pop', 'easy listening', 'ballad', 'singer-songwriter 19969 pop 19970 rap', 'shadyxv', 'producer 19971 rap 19972 country', 'rock 19973 rap', 'dirty south', 'atlanta 19974 rap', 'east coast 19975 rap 19976 rock 19977 pop 19978 r&b 19979 pop', 'r&b', 'piano', 'ballad', 'singer-songwriter', 'soul', 'soul pop 19980 country', 'rock 19981 pop', 'teen pop', 'house', 'electro house', 'techno', 'deep house', 'dark pop', 'electronic', 'edm', 'electro-pop', 'electro', 'dance-pop 19982 rock 19983 r&b', 'rap', 'pop 19984 country 19985 country', 'bluegrass', 'ballad', 'honky tonk 19986 rap', 'tradução em português 19987 rock', 'baroque pop', 'folk', 'indie rock 19988 pop', 'pop-rock', 'boy band 19989 pop', 'canada 19990 rap', 'florida rap', 'posse cut', 'dirty south', 'hardcore hip-hop', 'gangsta rap 19991 r&b', 'rap', 'reggae 19992 rap 19993 country', 'rock', 'singer-songwriter 19994 pop', 'en español 19995 r&b', 'pop', 'rap', 'pop rap', 'dmv 19996 pop 19997 pop', 'pop-rock', 'uk', 'singer-songwriter 19998 rap', 'atlanta', 'dirty south 19999 rap', 'atlanta', 'dirty south', 'trap 20000 country', 'rock 20001 r&b 20002 pop', 'r&b', 'rock', 'pop-rock 20003 pop', 'rock', 'folk pop', 'piano', 'indie', 'easy listening', 'teen pop', 'bubblegum pop', 'indie pop', 'folk', 'alternative pop', 'acoustic', 'ballad', 'adult alternative', 'adult contemporary', 'singer-songwriter', 'alternative rock', 'pop-rock 20004 country', 'pop', 'teen pop', 'singer-songwriter', 'pop country 20005 pop', 'r&b', 'rap', 'soul pop', 'singer-songwriter 20006 r&b', 'rap', 'dirty south', 'florida rap', 'gangsta rap', 'hardcore hip-hop', 'soundtrack 20007 country', 'singer-songwriter 20008 rock', 'south africa', 'post-grunge', 'alternative', 'alternative rock 20009 rap', 'east coast 20010 r&b', 'rap', 'atlanta', 'pop rap 20011 pop 20012 country', 'ballad', 'singer-songwriter 20013 country 20014 country 20015 country', 'acoustic', 'singer-songwriter', 'ballad 20016 r&b', 'pop 20017 pop', 'pop-rock 20018 rock', 'cover 20019 pop', 'r&b', 'reggae 20020 rap 20021 r&b', 'pop', 'dance', 'funk', 'soul 20022 country', 'pop', 'pop country 20023 pop', 'rap', 'florida rap', 'crunk', 'electro-pop 20024 country', 'rock', 'easy listening', 'ballad', 'singer-songwriter 20025 rock', 'pop-rock', 'emo', 'pop-punk 20026 rock', 'alternative metal', 'alternative rock', 'hard rock', 'metal 20027 rock', 'ballad', 'piano', 'pop-rock', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'blues rock 20028 country 20029 pop', 'dance-pop', 'electro-pop', 'edm', 'electronic', 'dance', 'electro 20030 rap 20031 r&b', 'rap 20032 rap', 'gangsta rap', 'east coast', 'hip-hop', 'jazz rap', 'producer 20033 rap 20034 pop', 'rock', 'easy listening', 'adult contemporary', 'adult alternative', 'singer-songwriter', 'piano', 'pop-rock 20035 rap', 'crunk 20036 rock 20037 pop', 'rock', 'brasil 20038 rock', 'alternative rock 20039 pop', 'uk', 'girl group', 'charity 20040 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 20041 r&b 20042 rap', 'pop', 'puerto rico', 'latin urban', 'latin pop', 'latin music', 'reggaetón', 'en español 20043 pop', 'pop-rock 20044 country', 'ballad', 'singer-songwriter 20045 country', 'ballad', 'singer-songwriter 20046 pop', 'jamaica', 'scandinavia', 'danmark 20047 r&b', 'pop', 'rap', 'chicago rap', 'synth-pop', 'electro-pop 20048 pop', 'christmas 20049 r&b', 'pop', 'dmv', 'soundtrack', 'christmas 20050 pop', 'electro-pop', 'dance-pop', 'electro house', 'house', 'dance', 'electronic 20051 pop', 'new wave', 'pop-rock', 'pop-punk', 'canada 20052 rap 20053 country 20054 pop', 'r&b', 'acoustic', 'dmv 20055 r&b', 'rap', 'west coast', 'electro-funk', 'hip-hop', 'gangsta rap 20056 rock', 'adult contemporary', 'ballad', 'singer-songwriter 20057 r&b', 'soul 20058 rap 20059 rap 20060 r&b 20061 country 20062 rock', 'alternative rock', 'pop-punk', 'pop-rock 20063 rock', 'hard rock 20064 pop', 'electro-pop', 'pop-rock', 'soundtrack 20065 r&b 20066 rock', 'piano', 'island music', 'singer-songwriter', 'blues rock', 'jazz fusion', 'pop-rock', 'adult alternative 20067 rap', 'hip-hop', 'alternative 20068 pop', 'r&b', 'ballad', 'singer-songwriter', 'soul pop', 'soul 20069 pop', 'ballad', 'piano', 'singer-songwriter 20070 rock', 'alternative rock', 'pop-punk 20071 pop', 'rock', 'pop-rock 20072 rap 20073 pop', 'country', 'pop country', 'holiday', 'christmas 20074 rap', 'latin rap', 'dance-pop', 'soca', 'en español 20075 rock 20076 rap 20077 pop 20078 pop', 'r&b', 'dance-pop 20079 pop 20080 rock', 'christian rock', 'christian', 'post-grunge 20081 rock', 'post-grunge', 'military 20082 pop 20083 pop', 'pop-rock', 'teen pop', 'soundtrack 20084 country', 'pop country', 'singer-songwriter 20085 rock', 'hard rock', 'heavy metal', 'google', 'speed metal', 'memes', 'power metal', 'metal 20086 pop 20087 country 20088 country', 'rock 20089 rap 20090 r&b 20091 pop 20092 country', 'rock 20093 rap', 'crunk', 'trap', 'dirty south', 'hip-hop 20094 pop', 'eurodance', 'cover 20095 country', 'rock 20096 country 20097 rock', 'heartland rock', 'pop-rock', 'singer-songwriter', 'contemporary folk', 'folk', 'folk rock 20098 country', 'ballad 20099 rock 20100 country 20101 rock', 'post-grunge', 'hard rock', 'alternative rock 20102 pop', 'uk', 'soundtrack 20103 rock', 'pop', 'electronic rock', 'electro-pop', 'disney', 'soundtrack', 'pop-rock 20104 rap', 'battle rap 20105 rock', 'pop', 'singer-songwriter', 'ballad', 'pop-rock 20106 pop', 'rock', 'ballad', 'adult contemporary', 'post-grunge', 'alternative', 'alternative rock', 'pop-rock 20107 pop 20108 pop', 'gospel', 'folk 20109 rap 20110 pop', 'rock', 'folk rock', 'pop-rock', 'baroque pop 20111 pop', 'teen pop', 'tv', 'disney', 'soundtrack 20112 rap 20113 rap', 'crunk', 'dirty south', 'atlanta 20114 country 20115 rap 20116 rock', 'hard rock 20117 rock 20118 rock', 'country 20119 pop', 'acoustic', 'soft rock', 'teen pop', 'singer-songwriter 20120 rap 20121 country 20122 rap 20123 r&b', 'pop 20124 pop', 'classical music 20125 pop', 'rap', 'r&b', 'singer-songwriter', 'atlanta', 'soul pop 20126 rap 20127 r&b', 'pop', 'adult contemporary', 'ballad', 'soul pop', 'uk 20128 pop', 'rock', 'country', 'pop-rock', 'pop country', 'singer-songwriter 20129 rap 20130 pop', 'rock', 'pop-rock 20131 rap 20132 country', 'christian', 'ballad 20133 pop 20134 r&b', 'rap', 'dmv 20135 country 20136 rock 20137 pop 20138 pop 20139 pop 20140 pop', 'latin pop', 'latin urban', 'panamá', 'latin music', 'reggae', 'reggaetón', 'en español 20141 pop', 'ballad', 'musicals 20142 r&b', 'rap 20143 r&b', 'singer-songwriter', 'soul pop', 'funk', 'neo soul', 'soul 20144 r&b', 'rap', 'hip-hop 20145 country', 'singer-songwriter', 'pop country 20146 r&b', 'singer-songwriter', 'neo soul', 'soul 20147 r&b', 'pop', 'electronic trap', 'trap', 'electro-pop', 'electro house', 'house', 'electro 20148 r&b', 'rap 20149 country', 'rock 20150 r&b', 'pop', 'girl group', 'dance-pop', 'electro-pop 20151 rap', 'electro-pop', 'dirty south', 'crunk 20152 rock', 'country 20153 r&b', 'rap 20154 country', 'rock', 'ballad', 'power pop', 'piano 20155 rap 20156 pop', 'tradução em português 20157 pop', 'pop-rock 20158 pop', 'r&b', 'rock', 'psychedelic', 'soul', 'psychedelic rock', 'soul pop 20159 r&b 20160 rock', 'cover', 'alternative rock', 'pop-punk', 'emo 20161 rap 20162 rap 20163 rock', 'heavy metal', 'nu-metal 20164 pop 20165 rock', 'adult alternative', 'alternative rock', 'indie rock 20166 rock', 'british rock', 'alternative rock', 'uk', 'art rock 20167 country 20168 rock', 'hard rock', 'dance punk', 'dance rock', 'art-punk', 'punk rock', 'alternative rock 20169 rock', 'country', 'pop country 20170 pop', 'pop-punk', 'teen pop', 'dance-pop', 'electro-pop 20171 pop 20172 country', 'rock', 'honky tonk', 'singer-songwriter', 'ballad 20173 pop 20174 r&b 20175 country', 'rock 20176 pop', 'jazz 20177 country', 'blues 20178 pop', 'rock', 'ballad', 'adult contemporary', 'alternative', 'alternative rock', 'pop-rock 20179 country', 'rock 20180 r&b', 'pop', 'uk 20181 pop 20182 country', 'rock', 'ballad 20183 country', 'easy listening', 'adult contemporary', 'cover 20184 r&b', 'pop', 'piano', 'soul pop', 'neo soul 20185 rap 20186 r&b', 'pop', 'ballad 20187 rap', 'pop 20188 pop', 'rock', 'ballad', 'teen pop', 'easy listening', 'singer-songwriter', 'acoustic', 'alternative pop', 'adult contemporary', 'adult alternative', 'pop-rock 20189 rap', 'r&b', 'dance 20190 rock', 'south africa', 'alternative', 'alternative rock', 'post-grunge 20191 r&b', 'rap', 'easy listening', 'uk r&b', 'uk rap', 'uk', 'adult contemporary', 'memes 20192 r&b', 'dmv 20193 pop', 'electro-pop', 'euro house', 'dmv', 'dance-pop 20194 r&b', 'pop', 'electro-pop 20195 rap', 'hardcore hip-hop', 'bounce', 'hip-hop 20196 pop', 'rap', 'r&b', 'singer-songwriter', 'soul pop', 'electronic', 'dirty south', 'remix 20197 pop', 'rock', 'pop-punk', 'alternative rock 20198 r&b', 'pop', 'rock', 'soul 20199 rap', 'crunk', 'dance', 'atlanta 20200 rap 20201 pop', 'pop-rock 20202 r&b 20203 pop', 'singer-songwriter', 'electronic', 'electro-pop', 'dance-pop 20204 rock', 'rap', 'rap rock 20205 pop', 'r&b', 'ballad', 'singer-songwriter', 'soul', 'soul pop 20206 pop 20207 rap', 'pop rap', 'memes', 'west coast', 'trap 20208 pop', 'rock 20209 pop 20210 country', 'rock', 'power pop', 'feminism 20211 pop', 'rock', 'classical crossover', 'art pop', 'art rock', 'singer-songwriter', 'orchestral', 'adult alternative', 'adult contemporary', 'pop-rock', 'chamber music', 'baroque pop', 'british rock', 'soundtrack', 'uk 20212 rock', 'piano rock', 'politics', 'hard rock', 'alternative', 'alternative rock', 'uk 20213 pop 20214 pop', 'remix', 'electro-pop', 'electronic', 'dance-pop', 'dance 20215 rap 20216 rock', 'pop', 'singer-songwriter', 'pop-rock', 'dance-pop 20217 pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop 20218 rap 20219 r&b', 'rap', 'dirty south', 'atlanta', 'dmv 20220 country 20221 pop 20222 pop', 'cover 20223 rap 20224 pop', 'rock', 'easy listening', 'soft rock', 'acoustic', 'singer-songwriter', 'pop-rock 20225 pop 20226 rap 20227 rock', 'american idol', 'cover', 'pop-rock 20228 pop 20229 pop 20230 pop 20231 rap 20232 rock', 'country', 'pop', 'pop-rock', 'pop country', 'singer-songwriter 20233 country 20234 pop 20235 r&b', 'rap 20236 rap', 'hip-hop', 'piano 20237 rock', 'american idol', 'cover 20238 rap 20239 pop', 'r&b', 'singer-songwriter', 'soul pop', 'soul 20240 r&b', 'pop', 'electro-pop 20241 rap', 'west coast 20242 rock', 'country 20243 country', 'rock 20244 rap', 'trap 20245 rock', 'heavy metal', 'nu-metal 20246 rock 20247 rap', 'dirty south', 'gangsta rap 20248 pop', 'teen pop', 'pop-rock 20249 rap 20250 rap', 'producer 20251 rap', 'r&b', 'canada 20252 pop', 'rock', 'pop-rock 20253 rap 20254 r&b', 'rap', 'funk 20255 rock 20256 r&b', 'singer-songwriter', 'soundtrack', 'funk-pop', 'funk', 'soul pop', 'blue-eyed soul', 'soul 20257 rap', 'hip-hop 20258 r&b', 'gospel', 'christian 20259 rock', 'hard rock', 'post-grunge 20260 country', 'pop country', 'adult contemporary', 'easy listening', 'ballad', 'piano', 'singer-songwriter 20261 pop', 'teen pop', 'musicals', 'tv', 'disney', 'soundtrack 20262 r&b', 'pop', 'teen pop', 'dark pop', 'dance-pop', 'electro-pop 20263 pop', 'rock', 'teen pop', 'pop-rock', 'musicals', 'tv', 'soundtrack', 'disney 20264 pop', 'ballad', 'teen pop', 'tv', 'musicals', 'disney', 'soundtrack 20265 pop', 'musicals', 'tv', 'disney', 'soundtrack 20266 rap 20267 pop', 'dance rock', 'pop-punk', 'electro-pop', 'singer-songwriter', 'pop-rock', 'dance-pop 20268 country 20269 country', 'australia', 'pop country 20270 rock', 'pop', 'power pop', 'teen pop', 'pop-rock 20271 country 20272 country', 'pop country 20273 pop', 'teen pop 20274 rock', 'alternative rock', 'pop-punk', 'pop-rock 20275 rap 20276 rock', 'hard rock', 'alternative rock 20277 rap 20278 rap 20279 country', 'rock', 'singer-songwriter 20280 r&b', 'pop', 'jazz fusion', 'dance-pop', 'dance 20281 country 20282 country', 'rock', 'singer-songwriter', 'ballad 20283 rap 20284 rap 20285 country', 'rock', 'singer-songwriter 20286 pop 20287 country', 'pop', 'ballad', 'singer-songwriter 20288 country', 'pop', 'power pop 20289 country', 'honky tonk 20290 country', 'rock 20291 pop', 'r&b', 'bubblegum pop 20292 pop', 'pop-punk', 'pop-rock 20293 rock', 'pop', 'rap', 'world music 20294 r&b 20295 pop 20296 rap 20297 rap 20298 pop', 'teen pop', 'pop-rock 20299 rap 20300 r&b', 'pop 20301 rap 20302 pop', 'soundtrack', 'musicals 20303 rock', 'pop', 'singer-songwriter', 'teen pop', 'pop-rock 20304 r&b', 'rap 20305 pop', 'electro-pop', 'dance-pop 20306 rap 20307 pop', 'ballad 20308 rap 20309 rap', 'atlanta', 'pop rap 20310 pop 20311 r&b', 'soul 20312 rock 20313 country', 'pop country', 'adult contemporary', 'easy listening', 'ballad 20314 r&b', 'rap', 'atlanta', 'trap 20315 pop 20316 rock', 'country', 'pop', 'teen pop', 'pop-rock', 'soundtrack', 'singer-songwriter', 'pop country 20317 pop', 'r&b', 'dmv', 'soundtrack 20318 country', 'rock 20319 pop', 'rock', 'power pop', 'pop-rock 20320 rap 20321 pop', 'power pop', 'pop-rock 20322 rock 20323 pop', 'edm', 'synth-pop', 'dance', 'electronic', 'electro', 'electro-pop', 'dance-pop 20324 rap 20325 pop 20326 pop', 'rock', 'post-punk', 'pop-punk', 'alternative rock', 'pop-rock 20327 rock', 'thrash metal', 'heavy metal', 'metal', 'speed metal', 'extreme metal', 'bay area', 'west coast 20328 rap', 'dirty south 20329 pop', 'r&b', 'swing 20330 r&b', 'rap', 'dirty south', 'dmv 20331 rap', 'atlanta', 'east coast 20332 rock', 'heavy metal', 'thrash metal', 'metal 20333 pop', 'charity 20334 pop', 'rock', 'rap', 'rap rock', 'pop-rock', 'electronic rock', 'alternative rock 20335 pop 20336 rap 20337 rap 20338 rock', 'thrash metal', 'heavy metal 20339 rap', 'atlanta', 'dirty south 20340 r&b 20341 pop', 'r&b', 'rap', 'electronic', 'soul pop', 'soul 20342 pop', 'balada', 'latin music', 'latin pop', 'puerto rico', 'en español 20343 country', 'rock', 'southern rock', 'singer-songwriter 20344 rap', 'atlanta', 'east coast', 'uk rap', 'uk 20345 country', 'pop', 'singer-songwriter', 'pop country 20346 pop', 'rock', 'alternative pop', 'alternative', 'punk rock', 'pop-rock', 'alternative rock', 'emo', 'pop-punk 20347 rock 20348 pop', 'r&b', 'soul pop 20349 rock', 'pop', 'singer-songwriter', 'easy listening', 'adult contemporary', 'ballad', 'pop-rock 20350 country 20351 pop', 'r&b', 'soul pop', 'singer-songwriter', 'soul 20352 rock', 'post-grunge', 'alternative metal', 'hard rock', 'alternative rock 20353 country', 'rock 20354 rap', 'r&b', 'pop', 'electronic', 'pop rap', 'art pop', 'alternative r&b', 'electro-pop 20355 pop 20356 country', 'rock', 'bluegrass', 'singer-songwriter 20357 rap', 'hip-hop', 'dirty south', 'trap 20358 pop', 'uk 20359 r&b', 'rap 20360 rap 20361 rap', 'soundtrack', 'crunk', 'dance-pop', 'dirty south 20362 rock', 'ballad', 'pop-rock', 'glam rock 20363 pop', 'rap', 'atlanta', 'trap', 'dirty south 20364 pop', 'rock', 'pop-rock 20365 country', 'rock', 'ballad 20366 pop', 'rock', 'pop-rock 20367 pop', 'clash', 'electro-pop 20368 rock', 'pop-rock 20369 rock 20370 pop', 'rock', 'synth-pop', 'new wave 20371 rap 20372 r&b', 'rap 20373 pop 20374 rock 20375 pop 20376 country', 'rock', 'ballad 20377 country', 'pop', 'pop country 20378 pop', 'dance-pop', 'electro-pop 20379 country', 'singer-songwriter', 'outlaw country 20380 r&b', 'rap 20381 pop', 'rock', 'indie', 'indie pop', 'indie rock', 'alternative pop', 'alternative', 'alternative rock', 'punk rock', 'pop-rock', 'pop-punk', 'emo 20382 rock', 'r&b', 'dark pop', 'soul pop', 'soul 20383 rock', 'country', 'singer-songwriter 20384 country', 'pop country', 'singer-songwriter 20385 rock', 'hard rock', 'shoegaze', 'britpop', 'neo-psychedelia', 'alternative', 'alternative rock', 'british rock', 'uk 20386 rock', 'punk rock 20387 r&b', 'pop', 'soft rock', 'adult contemporary', 'feminism 20388 country', 'pop', 'teen pop', 'singer-songwriter', 'pop country 20389 r&b', 'rap', 'dmv 20390 rap 20391 r&b', 'pop 20392 r&b', 'rap 20393 rap 20394 country 20395 rock', 'soul', 'adult alternative', 'ballad', 'blues rock', 'folk', 'folk rock', 'singer-songwriter 20396 rock 20397 rock', 'alternative metal', 'post-grunge 20398 rock', 'alternative pop', 'alternative', 'punk rock', 'pop-rock', 'ballad', 'alternative rock', 'pop-punk', 'emo 20399 rap 20400 pop', 'rock', 'indie pop', 'indie', 'singer-songwriter', 'blues', 'uk', 'soul 20401 pop', 'rock', 'alternative rock', 'pop-rock 20402 country', 'rock 20403 pop', 'latin pop', 'en español 20404 rock', 'ballad', 'adult contemporary', 'adult alternative', 'post-grunge', 'pop-rock', 'alternative rock 20405 r&b', 'rap 20406 country', 'rock', 'ballad 20407 pop', 'rock', 'country', 'pop-rock', 'teen pop', 'piano', 'singer-songwriter', 'pop country', 'ballad 20408 country 20409 rap 20410 pop', 'cover', 'ballad 20411 rock 20412 pop', 'rap', 'electronic 20413 pop', 'r&b', 'singer-songwriter', 'soul pop 20414 pop', 'rap', 'art pop', 'pop rap', 'electro-pop', 'synth-pop 20415 country', 'pop', 'bubblegum pop', 'teen pop', 'singer-songwriter', 'pop country 20416 rock', 'alternative', 'soundtrack', 'pop-rock', 'emo', 'alternative rock 20417 rock 20418 rap 20419 r&b 20420 rap 20421 rock', 'hard rock 20422 rock', 'alternative', 'soundtrack', 'alternative rock 20423 country', 'pop', 'orchestral', 'acoustic', 'adult contemporary', 'easy listening', 'piano', 'singer-songwriter', 'pop country', 'ballad 20424 rock', 'industrial metal 20425 rock 20426 country', 'rock', 'pop country', 'australia', 'singer-songwriter 20427 rock', 'country', 'pop', 'pop-rock', 'teen pop', 'singer-songwriter', 'pop country 20428 rock', 'pop-punk', 'alternative rock', 'pop-rock 20429 rock', 'country', 'pop', 'pop-rock', 'teen pop', 'singer-songwriter', 'pop country 20430 country', 'pop', 'teen pop', 'ballad', 'singer-songwriter', 'pop country 20431 rock', 'orchestral', 'symphonic rock', 'piano rock', 'piano', 'singer-songwriter', 'alternative rock', 'soundtrack 20432 country', 'singer-songwriter', 'americana', 'bluegrass 20433 country', 'türkçe çeviri 20434 rock', 'country', 'honky tonk', 'southern rock 20435 country', 'pop', 'teen pop', 'singer-songwriter', 'pop country 20436 r&b', 'rap 20437 r&b', 'rap', 'hip-hop', 'bay area', 'singer-songwriter', 'soul', 'soul pop 20438 pop', 'rock', 'ballad', 'christian', 'alternative rock 20439 rock', 'post-grunge', 'alternative rock 20440 rock', 'ballad', 'acoustic', 'pop-rock 20441 country', 'rock 20442 r&b', 'rap 20443 pop 20444 r&b', 'neo soul 20445 country 20446 pop', 'rap', 'chamber pop', 'synth-pop', 'electro-pop 20447 pop', 'rock', 'baroque pop', 'pop-rock', 'power pop 20448 pop', 'australia', 'pop-rock', 'synth rock', 'new wave', 'electro-pop 20449 rap 20450 pop', 'ballad 20451 pop', 'rap', 'alternative pop', 'pop rap 20452 rock', 'adult contemporary', 'adult alternative', 'post-grunge', 'alternative rock 20453 pop', 'electro-pop', 'dance-pop 20454 r&b', 'rap 20455 pop 20456 country', 'rock 20457 pop', 'electro-pop', 'dance-pop 20458 rock', 'alternative dance', 'electronic rock', 'dance punk', 'electro-pop', 'new wave 20459 rap', 'arabic rap | راب عربي', 'east coast 20460 country 20461 rap', 'electro-funk 20462 r&b', 'pop 20463 r&b', 'rap 20464 pop', 'rock', 'power pop', 'pop-rock', 'electro-pop', 'dance-pop 20465 pop 20466 r&b', 'rap', 'remix 20467 pop', 'rock 20468 pop', 'r&b', 'rap 20469 pop', 'lgbtq+', 'electro-pop', 'dance-pop 20470 rap', 'r&b', 'pop 20471 r&b', 'pop 20472 r&b 20473 country', 'rock 20474 pop', 'teen pop', 'cover', 'power pop', 'pop-rock', 'electro-pop', 'soundtrack 20475 pop 20476 pop', 'rock', 'emo', 'teen pop', 'alternative pop', 'emo pop', 'pop-punk', 'pop-rock 20477 rock', 'pop', 'teen pop', 'electro-pop', 'pop-rock 20478 rock', 'rap', 'cover', 'post-hardcore 20479 pop', 'electronic rock', 'disney', 'tv', 'pop-rock', 'soundtrack 20480 rap 20481 rap 20482 rap', 'hip-hop 20483 pop', 'singer-songwriter', 'ballad', 'pop-rock 20484 pop 20485 rock', 'pop-rock', 'indie rock 20486 country 20487 pop', 'pop-rock 20488 r&b', 'rap', 'dirty south', 'hip-hop 20489 country 20490 rock', 'ireland 20491 r&b', 'screen', 'soundtrack', 'cover 20492 pop', 'ballad', 'alternative', 'alternative pop', 'teen pop 20493 r&b', 'pop', 'ballad 20494 pop 20495 pop 20496 pop', 'pop-rock', 'singer-songwriter', 'indie rock', 'indie pop', 'alternative pop', 'indie 20497 pop', 'rap', 'dance-pop 20498 pop', 'cover', 'ballad 20499 country', 'r&b', 'rock 20500 rap 20501 rock 20502 rock', 'hard rock', 'south africa', 'alternative', 'alternative rock', 'cover', 'post-grunge 20503 pop 20504 rap 20505 rock 20506 rap', 'pop', 'remix 20507 rock', 'heartland rock', 'singer-songwriter 20508 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 20509 r&b', 'rock 20510 rap', 'east coast 20511 rap 20512 rap', 'conscious hip-hop', 'young gang', 'ghana', 'scandinavia', 'underground hip-hop', 'italy', 'trapwave 20513 rap', 'tv', 'comedy 20514 pop', 'alternative pop', 'uk 20515 country', 'cover', 'ballad 20516 country', 'rock 20517 pop 20518 r&b', 'rap', 'singer-songwriter', 'atlanta', 'dirty south 20519 country 20520 pop 20521 pop', 'singer-songwriter', 'folk pop', 'indie pop 20522 rap 20523 rap 20524 rap', 'latin rap', 'pop rap', 'reggaetón', 'en español', 'latin music', 'eurodance 20525 pop', 'pop-rock 20526 country', 'rock', 'ballad', 'piano 20527 country 20528 pop', 'r&b 20529 country', 'pop', 'power pop', 'pop country 20530 r&b', 'rap', 'alternative r&b', 'theme song', 'anthem', 'sports', 'canada', 'underground hip-hop', 'hip-hop', 'football (soccer) 20531 country', 'pop', 'ballad', 'piano', 'disney', 'soundtrack', 'pop-rock 20532 rap', 'west coast', 'freestyle 20533 rock', 'adult alternative', 'ireland 20534 r&b', 'pop 20535 rap 20536 rap 20537 rap 20538 rock', 'alternative dance', 'dance rock', 'neo-psychedelia', 'synth rock', 'synth-pop', 'electro-pop 20539 pop 20540 pop', 'singer-songwriter', 'synth-pop', 'electro-pop', 'dance-pop 20541 country', 'rock 20542 rap', 'pop rap', 'atlanta', 'dirty south 20543 country 20544 country', 'pop country', 'cover 20545 country', 'rock', 'australia', 'singer-songwriter 20546 country', 'pop', 'tv', 'disney', 'soundtrack 20547 pop', 'ballad 20548 pop', 'r&b', 'electro-pop 20549 country', 'rock', 'bluegrass', 'adult contemporary', 'easy listening', 'ballad', 'singer-songwriter 20550 rap 20551 r&b', 'neo soul', 'soul pop', 'soul 20552 country 20553 rap 20554 rap', 'rap rock 20555 country', 'singer-songwriter', 'ballad 20556 country', 'rock 20557 rap', 'trap 20558 r&b', 'rap 20559 country', 'rock', 'australia 20560 country 20561 country', 'pop country', 'singer-songwriter 20562 pop', 'teen pop', 'tv', 'disney', 'soundtrack 20563 country', 'rock 20564 pop', 'r&b', 'rap 20565 country', 'pop country', 'soundtrack 20566 rock 20567 pop', 'teen pop', 'tv', 'disney', 'soundtrack 20568 country', 'rock', 'piano', 'adult contemporary', 'americana', 'easy listening', 'australia', 'ballad 20569 rock 20570 rap 20571 country', 'rock 20572 country 20573 rap 20574 country', 'rock', 'singer-songwriter 20575 pop', 'ballad', 'tv', 'disney', 'soundtrack 20576 r&b 20577 country', 'rock', 'singer-songwriter 20578 rock', 'post-grunge', 'alternative rock 20579 r&b 20580 country 20581 country', 'rock 20582 pop', 'rap', 'hip-hop 20583 rock', 'protest songs', 'punk rock', 'alternative rock', 'pop-rock', 'pop-punk 20584 pop 20585 pop', 'dance rock', 'pop-rock', 'power pop 20586 rock 20587 rap', 'scandinavia', 'cover', 'norge 20588 pop', 'rock', 'pop-rock 20589 pop', 'rock', 'pop-rock 20590 country', 'rock 20591 rock', 'adult alternative', 'alternative rock', 'folk rock 20592 pop', 'electro-pop', 'dance-pop 20593 rap 20594 rap 20595 pop', 'uk', 'ballad 20596 rap 20597 rock', 'pop', 'pop-rock 20598 rock', 'indie', 'indie pop', 'indie rock', 'pop-rock', 'alternative pop', 'alternative', 'punk rock', 'alternative rock', 'pop-punk', 'emo 20599 rap 20600 r&b 20601 country', 'rock', 'ballad', 'singer-songwriter 20602 rap 20603 r&b', 'soul', 'neo soul 20604 country', 'rock 20605 r&b', 'rap 20606 pop', 'rock', 'adult contemporary', 'hard rock', 'ballad', 'alternative rock', 'pop-rock 20607 rap', 'hip-hop', 'hardcore hip-hop 20608 pop', 'jamaica', 'dance-pop', 'electro-pop 20609 pop', 'electro-pop', 'dance-pop 20610 r&b', 'pop', 'rap', 'canada 20611 rap', 'canada', 'posse cut 20612 rap 20613 rap', 'rap rock', 'mental health', 'hip-hop 20614 r&b', 'pop 20615 rock', 'pop', 'singer-songwriter', 'pop-rock 20616 rock', 'alternative', 'blues 20617 rock', 'pop', 'pop-rock', 'alternative rock', 'alternative', 'cover 20618 country', 'pop country 20619 country', 'rock 20620 pop', 'ballad 20621 r&b 20622 pop', 'soundtrack', 'a cappella', 'cover', 'tv', 'musicals 20623 rock', 'alternative', 'alternative rock', 'electronic rock', 'electronic 20624 pop 20625 pop', 'cover 20626 rock 20627 rock 20628 pop 20629 pop 20630 pop 20631 rap 20632 rock 20633 pop 20634 pop', 'american idol 20635 rock 20636 rap', 'hip-hop', 'hardcore hip-hop', 'horrorcore 20637 pop', 'ballad 20638 r&b', 'pop', 'jazz', 'screen', 'tv', 'soundtrack', 'cover 20639 country', 'rock 20640 country 20641 country 20642 pop 20643 country 20644 rap', 'trap 20645 pop', 'r&b', 'rap', 'hip-hop', 'dance-pop', 'electronic 20646 pop 20647 r&b', 'pop 20648 country', 'rock', 'singer-songwriter 20649 rock', 'adult alternative', 'alternative rock', 'indie rock 20650 rap', 'producer 20651 r&b', 'rap 20652 rap 20653 rock', 'pop', 'pop-rock', 'lgbtq+', 'electronic rock', 'dance', 'electro-pop 20654 pop', 'remix 20655 country', 'rock', 'southern rock', 'memes 20656 rock', 'alternative rock 20657 country', 'singer-songwriter', 'ballad 20658 pop', 'alternative pop', 'adult alternative', 'indie rock', 'indie pop 20659 rap 20660 pop', 'rap', 'bounce', 'crunk', 'pop rap 20661 pop', 'rock', 'emo', 'alternative rock', 'pop-punk', 'alternative pop 20662 rock', 'pop', 'singer-songwriter', 'pop-rock 20663 pop', 'r&b', 'rap', 'atlanta', 'trap', 'crunk', 'east coast', 'electro-pop 20664 pop', 'electronic', 'dance-pop', 'edm', 'dance', 'electro-pop 20665 rap', 'rap rock 20666 rock', 'pop', 'teen pop', 'power pop', 'pop-rock 20667 rock', 'ballad', 'punk rock', 'pop-punk', 'pop-rock', 'alternative', 'alternative rock 20668 country', 'rock', 'acoustic', 'ballad 20669 r&b', 'rap', 'uk rap', 'uk 20670 rock 20671 pop 20672 pop', 'singer-songwriter', 'ballad', 'adult contemporary 20673 pop', 'pop-punk', 'pop-rock 20674 rap', 'patois', 'dancehall', 'jamaica 20675 pop', 'r&b', 'rap', 'electro-pop', 'uk r&b', 'dance-pop', 'hip-hop', 'uk 20676 rock', 'pop', 'teen pop', 'alternative rock', 'pop-rock', 'disney', "children's music", 'soundtrack 20677 r&b', 'christian r&b', 'neo soul', 'soul', 'alternative r&b', 'alternative', 'christian', 'gospel 20678 country', 'rock', 'ballad 20679 pop', 'teen pop', 'tv', 'pop-rock', 'disney', 'soundtrack 20680 r&b', 'electro-pop', 'beef 20681 rock', 'alternative', 'emo', 'alternative rock', 'pop-punk 20682 pop', 'pop-rock', 'teen pop', 'tv', 'disney', 'soundtrack 20683 pop', 'teen pop', 'tv', 'dance-pop', 'disney', 'soundtrack 20684 rap 20685 pop', 'canada 20686 pop', 'colombia', 'dance', 'electro-pop', 'electronic 20687 pop 20688 rap', 'dmv', 'canada 20689 rock', 'singer-songwriter', 'blue-eyed soul', 'soft rock 20690 rock 20691 country', 'singer-songwriter 20692 r&b', 'rap 20693 pop', 'rap', 'reggae rock', 'rap rock', 'dancehall', 'ska punk', 'ska', 'adult alternative', 'reggae 20694 pop', 'rock', 'baroque pop', 'glam rock', 'pop-rock 20695 rap 20696 country', 'rock 20697 r&b', 'rap 20698 r&b', 'pop 20699 pop', 'rock', 'soft rock', 'piano', 'christian rock', 'christian pop', 'adult alternative', 'adult contemporary', 'pop-rock 20700 rap 20701 country', 'rock 20702 pop 20703 country', 'rock 20704 r&b', 'pop', 'rap', 'pop rap', 'rap rock 20705 pop', 'pop country 20706 country', 'rock 20707 country', 'pop country', 'power pop', 'ballad 20708 rock 20709 rock', 'pop', 'cover', 'glam rock', 'pop-rock', 'power pop', 'tv', 'disney', 'soundtrack 20710 pop', 'dance-pop', 'electro-pop', 'electronic', 'dance 20711 pop', 'r&b', 'ballad', 'soul pop', 'soul 20712 rock', 'alternative', 'british rock', 'uk', 'electronic rock', 'glam rock', 'synth rock', 'space rock', 'alternative rock 20713 r&b', 'rap 20714 country 20715 rock', 'pop', 'bubblegum pop', 'teen pop 20716 pop', 'ballad', 'teen pop', 'charity', "children's music", 'disney', 'soundtrack 20717 pop', 'r&b', 'memes 20718 rock', 'blues 20719 rap', 'pop', 'dance-pop', 'eurodance', 'electro-pop 20720 pop', 'country', 'soft rock', 'easy listening', 'adult contemporary', 'singer-songwriter', 'ballad', 'pop country 20721 pop', 'electronic', 'synth-pop', 'electro-pop 20722 country', 'singer-songwriter', 'ballad 20723 pop', 'electronic', 'electro-pop', 'remix 20724 pop', 'r&b', 'alternative r&b', 'dance', 'dancehall', 'electro 20725 pop', 'dream pop', 'singer-songwriter', 'adult alternative', 'alternative pop', 'adult contemporary', 'easy listening', 'synth-pop', 'electronic 20726 country', 'rock 20727 rock', 'garage rock', 'acoustic', 'grunge', 'alternative rock 20728 country 20729 rock', 'alternative metal', 'post-grunge', 'hard rock 20730 pop', 'electro-pop', 'dance-pop 20731 rock', 'pop-rock', 'alternative rock', 'power pop', 'pop-punk 20732 rap 20733 r&b', 'rap 20734 rock', 'pop', 'synth rock', 'pop-rock 20735 r&b', 'soul 20736 rap 20737 rock', 'alternative metal', 'post-grunge', 'christian rock', 'christian 20738 rock', 'post-grunge', 'alternative metal', 'alternative rock 20739 r&b', 'rap 20740 pop', 'ballad', 'easy listening', 'singer-songwriter', 'jazz 20741 pop 20742 country', 'rock', 'piano', 'ballad', 'southern rock', 'singer-songwriter 20743 rap', 'chicago rap', 'trap', 'emo trap 20744 r&b', 'pop', 'dance-pop', 'hip-hop', 'jamaica', 'reggae 20745 pop', 'r&b', 'west coast', 'east coast', 'funk', 'soul pop', 'soul 20746 r&b', 'pop', 'cover', 'screen', 'soundtrack', 'tv 20747 r&b', 'rap', 'pop rap', 'east coast 20748 pop', 'rap 20749 rock', 'alternative metal', 'post-grunge', 'hard rock', 'alternative rock 20750 country', 'pop', 'pop country', 'pop-rock', 'pop-punk', 'ballad 20751 r&b', 'rap', 'dmv', 'soundtrack 20752 r&b', 'rap', 'chicago rap', 'detroit', 'hip-hop', 'hardcore hip-hop', 'posse cut', 'nba', 'canada', 'basketball', 'soundtrack 20753 rap 20754 pop 20755 pop', 'r&b', 'rap', 'psychedelic', 'alternative r&b', 'alternative', 'emo rap', 'electro-pop', 'conscious hip-hop', 'chill', 'neo-psychedelia 20756 pop', 'rap 20757 r&b', 'pop', 'ballad', 'soul 20758 pop 20759 rock 20760 rock 20761 country', 'pop country 20762 rock', 'doom metal', 'metal 20763 pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop', 'neo soul 20764 pop', 'cover', 'screen', 'soundtrack', 'tv 20765 rock', 'pop', 'cover', 'soundtrack', 'tv 20766 country', 'easy listening', 'adult contemporary', 'pop country', 'ballad 20767 pop', 'r&b', 'singer-songwriter', 'funk', 'soul pop', 'neo soul', 'soul 20768 pop', 'rock', 'pop-rock', 'funk 20769 country 20770 rock', 'pop', 'cover', 'screen', 'soundtrack', 'tv 20771 rock', 'heartland rock', 'post-grunge', 'alternative rock 20772 rock', 'pop-punk', 'emo', 'alternative rock 20773 pop', 'cover', 'screen', 'soundtrack', 'tv', 'musicals 20774 rock', 'pop', 'adult alternative', 'adult contemporary', 'alternative rock', 'christian', 'pop-rock 20775 country', 'ballad', 'singer-songwriter 20776 country', 'feminism', 'pop country 20777 rock', 'pop', 'roots', 'adult alternative', 'adult contemporary', 'folk pop', 'folk rock', 'singer-songwriter', 'folk', 'pop-rock 20778 rap', 'pop 20779 pop', 'electronic', 'dance', 'electro-pop 20780 pop', 'canada 20781 pop', 'mashup', 'tv', 'screen', 'soundtrack', 'cover 20782 pop', 'tv', 'screen', 'soundtrack', 'cover', 'mashup 20783 rap', 'dmv', 'crunk 20784 rap 20785 pop', 'rock', 'pop-rock 20786 pop', 'edm', 'electro', 'electronic', 'dance', 'teen pop', 'dance-pop', 'electro-pop 20787 rock', 'alternative rock 20788 country', 'honky tonk 20789 rap', 'edm', 'electronic', 'electro house', 'crunk 20790 rap', 'dirty south', 'canada 20791 rock', 'pop', 'piano', 'blues rock', 'singer-songwriter', 'adult alternative', 'acoustic', 'pop-rock 20792 pop', 'rap 20793 r&b', 'pop', 'cover', 'screen', 'soundtrack', 'tv 20794 pop', 'south korea', 'k-pop (케이팝)', 'girl group', 'genius korea', 'korean 20795 country', 'singer-songwriter 20796 pop', 'rock', 'pop-rock 20797 rock', 'alternative rock', 'alternative 20798 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul', 'producer 20799 r&b', 'rap 20800 country', 'singer-songwriter 20801 rock 20802 pop', 'adult contemporary', 'cover', 'screen', 'soundtrack', 'tv 20803 pop', 'christian pop', 'christian', 'gospel', 'worship', 'chamber pop', 'chamber music', 'orchestral', 'symphonic rock', 'ballad', 'pop-rock', 'glam rock 20804 r&b', 'rap', 'hip-hop', 'west coast', 'gangsta rap 20805 country', 'rock 20806 rap', 'crunk 20807 r&b', 'rap 20808 country', 'ballad 20809 r&b', 'rap', 'cover', 'screen', 'soundtrack', 'tv 20810 pop', 'ballad', 'dream pop', 'shoegaze', 'alternative pop', 'alternative', 'synth-pop', 'ambient', 'singer-songwriter', 'electronic 20811 country', 'rock 20812 r&b', 'pop', 'dark pop', 'soul pop', 'neo soul', 'synth-pop 20813 pop', 'electronic', 'synth-pop', 'electro-pop', 'dance-pop 20814 country', 'pop', 'teen pop', 'soundtrack', 'singer-songwriter', 'pop country 20815 country', 'pop', 'teen pop', 'cover', 'singer-songwriter', 'pop country', 'ballad 20816 country', 'pop', 'teen pop', 'singer-songwriter', 'pop country 20817 country', 'pop', 'teen pop', 'singer-songwriter', 'pop country 20818 country', 'pop', 'teen pop', 'ballad', 'singer-songwriter', 'pop country 20819 pop', 'rap', 'east coast 20820 pop', 'canada 20821 rock', 'country', 'singer-songwriter', 'power pop', 'pop country 20822 rock 20823 pop', 'r&b', 'rap', 'pop rap', 'atlanta 20824 r&b', 'rap 20825 pop', 'teen pop', 'canada 20826 pop', 'r&b', 'rap', 'atlanta', 'dance', 'dance-pop', 'dirty south', 'electro', 'electro-pop', 'electronic', 'jamaica', 'uk', 'uk r&b 20827 country', 'rock', 'ballad 20828 pop 20829 country', 'r&b', 'rock 20830 pop', 'cover', 'soundtrack', 'tv', 'musicals 20831 rap', 'pop', 'synth-pop 20832 pop', 'rock', 'adult alternative', 'adult contemporary', 'pop-rock 20833 rap 20834 r&b', 'rap 20835 pop', 'pop-rock', 'glam rock 20836 pop 20837 country', 'rock 20838 pop', 'rap 20839 rock', 'soft rock', 'adult contemporary', 'ballad', 'easy listening', 'singer-songwriter 20840 pop', 'tv', 'screen', 'soundtrack', 'cover', 'ballad 20841 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 20842 pop', 'tv', 'mashup', 'cover', 'screen', 'soundtrack 20843 pop', 'screen', 'tv', 'soundtrack', 'cover', 'ballad 20844 pop', 'cover', 'ballad', 'screen', 'soundtrack 20845 pop', 'canada 20846 rap', 'trap 20847 pop 20848 pop', 'canada 20849 rap', 'east coast 20850 pop', 'canada 20851 rock', 'easy listening', 'singer-songwriter 20852 pop', 'türkiye', 'turkey', 'türkçe çeviri 20853 r&b', 'rap', 'trinidad & tobago', 'canada 20854 pop 20855 r&b', 'pop', 'tradução em português 20856 pop', 'tv', 'screen', 'soundtrack', 'ballad', 'cover 20857 pop', 'tv', 'screen', 'ballad', 'soundtrack', 'cover 20858 pop', 'r&b', 'dmv 20859 pop', 'rap 20860 rap', 'dirty south', 'canada 20861 pop', 'rock', 'blues rock', 'ballad 20862 pop 20863 pop 20864 country', 'ballad 20865 country', 'rock 20866 pop', 'holiday', 'cover', 'christmas 20867 rock 20868 pop', 'rock', 'pop-rock 20869 pop 20870 r&b 20871 rap', 'electro-hop', 'electro house 20872 rock', 'indie', 'alternative', 'french rock', 'france', 'adult alternative', 'alternative rock', 'synth rock', 'electronic rock', 'indie rock 20873 pop', 'soft rock', 'easy listening', 'adult contemporary', 'adult alternative', 'ballad', 'pop-rock', 'ireland 20874 country', 'memorial', 'singer-songwriter', 'ballad', 'autobiography', 'biography 20875 r&b', 'pop', 'pop-rock 20876 country', 'singer-songwriter 20877 rap', 'dirty south 20878 pop', 'tv', 'soundtrack', 'screen', 'pop-rock', 'cover 20879 pop', 'tv', 'big band', 'musicals', 'cover', 'soundtrack 20880 pop', 'rap', 'alternative', 'alternative rock', 'post-grunge', 'rap rock', 'trap', 'electro-pop 20881 pop', 'r&b', 'singer-songwriter 20882 r&b', 'pop', 'soul', 'soul pop 20883 pop', 'tv', 'screen', 'soundtrack', 'a cappella', 'cover 20884 rock', 'alternative', 'alternative rock 20885 rap', 'gangsta rap', 'west coast 20886 rap', 'dmv 20887 r&b', 'pop', 'soundtrack', 'tv', 'screen', 'musicals', 'soul', 'cover 20888 rock 20889 country 20890 rap', 'hip-hop', 'hardcore hip-hop', 'horrorcore 20891 pop', 'r&b', 'remix', 'soul pop', 'soul 20892 rap', 'horrorcore', 'hip-hop', 'hardcore hip-hop 20893 rock', 'pop', 'adult contemporary', 'ballad', 'pop-rock', 'glam rock 20894 r&b', 'pop', 'singer-songwriter', 'soul pop', 'soul 20895 rap', 'r&b', 'pop', 'remix', 'singer-songwriter 20896 pop', 'hi-nrg', 'nu disco', 'electro-pop', 'teen pop', 'dance-pop 20897 rap', 'hip-hop', 'trap 20898 country 20899 rap', 'hip-hop', 'hardcore hip-hop', 'horrorcore 20900 country', 'rock 20901 rap', 'alternative', 'alternative rock', 'emo rap', 'hardcore hip-hop', 'rap rock 20902 rap', 'pop', 'electro-pop', 'dance-pop 20903 pop', 'dance', 'electro', 'electronic', 'electronicore', 'electro-pop', 'dance-pop 20904 pop', 'electronic', 'electro', 'dance-pop', 'electro-pop 20905 pop', 'country 20906 rap', 'canada 20907 country 20908 rock', 'pop', 'r&b', 'uk', 'uk r&b', 'industrial', 'singer-songwriter', 'soul pop', 'soul 20909 pop', 'country 20910 rap 20911 rock', 'alternative rock', 'scotland 20912 pop', 'ballad 20913 country', 'rock', 'dream pop', 'dark pop', 'ballad', 'australia', 'singer-songwriter 20914 rock', 'country', 'easy listening', 'power pop', 'ballad', 'singer-songwriter 20915 rock', 'adult alternative', 'acoustic', 'ballad 20916 country', 'pop', 'screen', 'pop country', 'teen pop', 'ballad', 'singer-songwriter', 'soundtrack 20917 pop', 'tradução em português 20918 rap 20919 pop', 'cover 20920 pop', 'country', 'singer-songwriter 20921 pop', 'charity', 'live 20922 pop 20923 country', 'pop', 'cover 20924 pop', 'rap', 'singer-songwriter', 'ballad 20925 pop 20926 r&b 20927 r&b', 'soul', 'gospel 20928 pop 20929 rap', 'trap 20930 pop', 'ballad', 'singer-songwriter 20931 rock', 'rap', 'emo rap', 'alternative', 'alternative rock', 'trinidad & tobago', 'rap rock', 'pop-punk', 'punk rock 20932 rock 20933 rap 20934 pop', 'cover 20935 rap 20936 rock', 'rap', 'alternative', 'alternative rock', 'rap rock 20937 rap', 'atlanta', 'trap 20938 pop 20939 pop 20940 r&b 20941 rap 20942 r&b', 'pop', 'dancehall 20943 rap 20944 pop', 'r&b', 'soul pop', 'soul 20945 rap', 'trap 20946 country', 'rock 20947 rap 20948 pop 20949 pop', 'r&b', 'rap', 'atlanta', 'dirty south', 'florida rap', 'soundtrack', 'video game', 'west coast 20950 r&b', 'pop', 'soul pop', 'soul', 'producer 20951 pop', 'disney', 'soundtrack 20952 pop', 'electro-pop', 'dance-pop 20953 r&b', 'pop 20954 rap 20955 pop', 'rap', 'electro-pop', 'uk', 'remix', 'dance-pop', 'teen pop 20956 r&b 20957 rock', 'pop', 'ballad', 'adult alternative', 'pop-rock', 'reggae 20958 rap 20959 country 20960 country', 'rock 20961 r&b', 'pop', 'canada 20962 pop', 'r&b 20963 rap', 'pop', 'r&b', 'singer-songwriter', 'producer 20964 rock', 'ballad', 'soundtrack', 'canada 20965 country', 'rock 20966 rock', 'alternative metal', 'hard rock', 'heavy metal', 'metal 20967 country', 'pop 20968 pop', 'new wave', 'electronica', 'electro-pop', 'synth-pop 20969 country', 'christian', 'ballad 20970 country', 'soundtrack 20971 country', 'rock', 'singer-songwriter 20972 rap', 'canada', 'producer 20973 pop 20974 r&b', 'rap 20975 pop', 'canada 20976 rap 20977 rap 20978 r&b', 'pop', 'singer-songwriter', 'dance', 'dance-pop', 'electronic', 'electro-pop 20979 pop', 'tv', 'disney', "children's music", 'teen pop 20980 pop', 'r&b', 'rap', 'soul 20981 pop', 'r&b', 'singer-songwriter', 'soul pop', 'neo soul', 'soul 20982 country 20983 pop', 'jamaica', 'canada', 'electro-pop 20984 r&b', 'rap 20985 rap', 'trinidad & tobago', 'east coast', 'west coast 20986 country 20987 rock', 'country', 'southern rock', 'singer-songwriter 20988 pop', 'teen pop', 'ballad', 'canada 20989 country', 'pop country', 'power pop 20990 country', 'rock', 'piano', 'ballad 20991 pop', 'ballad 20992 r&b', 'pop', 'electronic', 'electro-pop 20993 rap', 'r&b', 'pop', 'electronic 20994 pop', 'electronic', 'electro-pop', 'synth-pop', 'dance-pop 20995 rap', 'pop', 'tropical house', 'alternative', 'rap rock 20996 r&b', 'singer-songwriter', 'soul pop', 'neo soul', 'soul 20997 country', 'pop country 20998 rock', 'piano', 'singer-songwriter', 'pop-rock', 'adult alternative', 'folk rock 20999 r&b', 'rap 21000 pop', 'rap 21001 country', 'rock', 'pop-rock 21002 pop', 'pop-rock', 'teen pop 21003 r&b', 'pop', 'singer-songwriter', 'soul', 'soul pop 21004 pop', 'pop-rock 21005 pop 21006 pop', 'electronic', 'dance-pop', 'electro-pop 21007 pop', 'soundtrack', 'tv', 'cover 21008 pop', 'ballad', 'tv', 'soundtrack', 'cover 21009 pop', 'tv', 'screen', 'soundtrack', 'cover 21010 rock', 'pop', 'tv', 'soundtrack', 'screen', 'cover 21011 rock', 'country', 'bluegrass', 'honky tonk', 'southern rock 21012 country', 'singer-songwriter', 'pop country 21013 rock', 'pop', 'teen pop', 'pop-rock', 'tv', 'screen', 'soundtrack', 'cover 21014 rap 21015 pop', 'musicals', 'tv', 'cover', 'screen', 'soundtrack 21016 pop', 'screen', 'tv', 'soundtrack', 'cover 21017 r&b', 'soul', 'ballad 21018 pop', 'tv', 'dance-pop', 'dance', 'cover', 'screen', 'soundtrack 21019 country', 'ballad', 'power pop 21020 country', 'rock 21021 r&b', 'rap', 'atlanta', 'dirty south', 'singer-songwriter', 'electronic 21022 pop', 'tv', 'soundtrack', 'cover', 'mashup 21023 r&b', 'pop', 'tv', 'cover', 'soundtrack 21024 r&b', 'hip-hop 21025 rock', 'pop', 'tv', 'cover', 'screen', 'soundtrack 21026 pop', 'folk 21027 pop', 'tv', 'cover', 'screen', 'soundtrack 21028 pop', 'rap', 'pop-rock 21029 r&b', 'pop', 'teen pop', 'hip-hop', 'electro-pop 21030 country', 'rock', 'cover 21031 pop', 'tv', 'soundtrack', 'screen', 'cover 21032 pop', 'teen pop', 'west coast', 'electro-pop', 'dance-pop', 'boy band 21033 pop', 'dance', 'electro-pop', 'electronic 21034 rock', 'adult alternative', 'indie rock 21035 pop', 'rap', 'detroit', 'anthem', 'hip-hop', 'soundtrack 21036 rap', 'pop', 'dance-pop 21037 rock', 'pop', 'pop-rock', 'tv', 'cover', 'soundtrack 21038 rap', 'pop', 'r&b', 'piano', 'dancehall', 'soul pop', 'canada 21039 rap', 'atlanta', 'dirty south', 'florida rap 21040 pop', 'soundtrack', 'tv', 'screen', 'cover 21041 rap', 'pop', 'tv', 'cover', 'soundtrack', 'screen 21042 pop', 'tv', 'soundtrack', 'remix', 'cover 21043 r&b', 'pop', 'tv', 'soundtrack', 'screen', 'cover 21044 country', 'rock 21045 rock 21046 rap', 'pop', 'teen pop', 'electro', 'bubblegum pop', 'west coast', 'electronic', 'electro-pop', 'dance', 'dance-pop', 'funk-pop 21047 rock', 'pop', 'tv', 'soundtrack', 'screen', 'pop-rock', 'cover 21048 rock 21049 pop', 'cover', 'tv', 'soundtrack 21050 r&b', 'pop', 'tv', 'screen', 'soundtrack', 'cover 21051 pop', 'tv', 'cover', 'soundtrack 21052 r&b', 'rap', 'dirty south', 'hip-hop 21053 pop', 'pop rap', 'electro house', 'dance-pop', 'electro-pop 21054 pop', 'musicals', 'tv', 'cover', 'soundtrack 21055 r&b', 'pop', 'teen pop', 'canada 21056 pop', 'pop-punk', 'pop-rock', 'electronic', 'dance-pop', 'electro-pop 21057 rock', 'pop', 'tv', 'cover', 'soundtrack 21058 pop', 'cover', 'tv', 'screen', 'soundtrack 21059 rock', 'pop', 'rap', 'dance-pop 21060 rock', 'metal', 'progressive metal', 'intro', 'heavy metal', 'alternative metal 21061 rock', 'pop-rock', 'uk', 'screen', 'soundtrack', 'alternative', 'alternative rock 21062 rap', 'pop', 'electronic', 'electro-pop', 'dance-pop', 'electro', 'dancehall 21063 pop', 'cover', 'tv', 'screen', 'soundtrack', 'electro-pop 21064 pop', 'tv', 'cover', 'screen', 'soundtrack 21065 country', 'rock', 'bluegrass', 'ballad', 'singer-songwriter 21066 pop 21067 pop', 'tv', 'screen', 'cover', 'soundtrack 21068 pop 21069 pop 21070 pop', 'ballad', 'musicals 21071 pop', 'tv', 'cover', 'screen', 'soundtrack 21072 pop 21073 rock', 'pop', 'seventies', 'folk rock', 'pop-rock', 'folk 21074 pop', 'rock', 'pop-rock', 'adult contemporary', 'adult alternative', 'easy listening', 'alternative', 'acoustic', 'ballad', 'pop-punk 21075 rap', 'west coast', 'hip-hop 21076 rap', 'boom bap 21077 r&b', 'rap 21078 rap 21079 r&b', 'rap', 'alternative r&b', 'canada 21080 pop', 'uk', 'teen pop', 'dance-pop', 'electro-pop 21081 rap 21082 rap 21083 r&b', 'pop', 'rap', 'east coast', 'hip-hop', 'trinidad & tobago', 'ballad 21084 r&b', 'pop', 'house', 'new jack swing', 'funk', 'tv', 'screen', 'soundtrack', 'cover 21085 pop', 'dance-pop 21086 rock', 'pop', 'pop-rock', 'tv', 'cover', 'screen', 'soundtrack 21087 country', 'rock 21088 pop', 'tv', 'screen', 'soundtrack', 'cover 21089 pop', 'tv', 'screen', 'soundtrack', 'cover 21090 rock', 'country', 'pop country 21091 rock', 'pop', 'cover', 'tv', 'soundtrack', 'screen 21092 pop 21093 pop', 'r&b 21094 pop', 'rock', 'teen pop', 'adult alternative', 'adult contemporary', 'alternative dance', 'alternative rock', 'new wave', 'pop-rock 21095 r&b', 'rap', 'pop', 'soundtrack', 'pop rap', 'teen pop', 'canada 21096 pop', 'tv', 'cover', 'screen', 'soundtrack 21097 pop', 'south africa', 'colombia', 'football (soccer)', 'world music 21098 pop', 'tv', 'screen', 'soundtrack', 'cover 21099 rock', 'pop', 'pop-rock', 'tv', 'cover', 'screen', 'soundtrack 21100 pop', 'electro-pop', 'dance-pop', 'dance', 'electronic 21101 r&b', 'rock 21102 rap 21103 pop', 'tv', 'screen', 'soundtrack', 'cover 21104 pop', 'ballad', 'pop-rock', 'cover', 'opera', 'tv', 'screen', 'soundtrack 21105 pop', 'rock', 'roots', 'adult contemporary', 'singer-songwriter', 'pop-rock 21106 pop', 'rock', 'classical music', 'adult alternative', 'adult contemporary', 'ballad', 'pop-rock', 'baroque pop', 'classical crossover 21107 r&b', 'rap', 'canada 21108 rap', 'canada 21109 r&b', 'rap', 'canada 21110 rock', 'heavy metal', 'nu-metal 21111 pop', 'dance-pop 21112 rap', 'atlanta', 'memes', 'trap', 'dirty south', 'crunk 21113 rap 21114 r&b 21115 country', 'honky tonk 21116 country', 'power pop', 'ballad 21117 country', 'rock 21118 rap', 'atlanta', 'canada', 'producer 21119 pop', 'rap', 'pop rap', 'detroit', 'hip-hop', 'ballad 21120 pop', 'electronic', 'dance', 'pop-rock', 'electro-pop', 'dance-pop 21121 rock', 'pop', 'adult alternative', 'adult contemporary', 'funk rock', 'pop-rock 21122 pop', 'rock', 'adult contemporary', 'adult alternative', 'singer-songwriter', 'pop-rock', 'piano', 'indie pop 21123 rock', 'rap', 'hardcore hip-hop', 'hip-hop', 'rap rock 21124 rap', 'horrorcore', 'hip-hop', 'hardcore hip-hop 21125 pop', 'pop-rock 21126 rock', 'rap', 'hip-hop', 'rap rock 21127 pop', 'rap', 'hip-hop 21128 pop', 'electro-pop', 'dance rock', 'electronic rock', 'dance-pop', 'electronic', 'dance 21129 rock', 'rap', 'rap rock', 'pop rap', 'art rock', 'art', 'experimental', 'experimental hip-hop', 'hardcore hip-hop', 'producer 21130 rock', 'pop', 'piano', 'adult contemporary', 'acoustic', 'ballad', 'pop-rock 21131 rap 21132 rap 21133 r&b', 'rap', 'hip-hop', 'west coast', 'dmv 21134 pop 21135 country', 'rock 21136 pop', 'latin pop', 'dominican republic', 'spanish music', 'latin music', 'en español 21137 rap 21138 country', 'singer-songwriter', 'bluegrass', 'americana', 'adult contemporary', 'easy listening', 'ballad 21139 r&b 21140 rap', 'florida rap', 'dirty south', 'trap', 'hardcore hip-hop', 'gangsta rap 21141 country', 'rock', 'bluegrass', 'americana 21142 rap', 'r&b', 'pop', 'electro house', 'dance', 'dance-pop 21143 country', 'rock 21144 rap 21145 r&b', 'rap 21146 rap', 'east coast', 'electronic 21147 pop', 'memes', 'teen pop', 'tv', 'disney', 'soundtrack 21148 r&b', 'soul pop', 'soul 21149 country 21150 pop 21151 pop', 'bubblegum pop', 'teen pop', 'dance-pop', 'electro-pop 21152 r&b', 'pop', 'alternative r&b', 'piano', 'ballad', 'adult contemporary', 'soul pop', 'soul 21153 r&b', 'rock 21154 rap', 'florida rap', 'pop rap', 'canada 21155 country', 'rock', 'pop country 21156 rap 21157 country', 'rock', 'ballad 21158 rock', 'alternative metal', 'post-grunge', 'alternative rock', 'hard rock 21159 rock', 'pop', 'heavy metal', 'dark pop', 'hard rock 21160 country', 'pop', 'singer-songwriter', 'adult contemporary', 'ballad', 'pop country 21161 rock', 'art rock', 'alternative rock', 'electronic rock 21162 pop', 'rap', 'jamaica 21163 pop', 'r&b', 'rap 21164 pop', 'piano', 'ballad', 'singer-songwriter 21165 rock 21166 pop', 'rock', 'pop-rock', 'ireland 21167 r&b', 'rap 21168 pop', 'singer-songwriter', 'gothic rock 21169 country', 'singer-songwriter', 'bluegrass 21170 rap', 'hip-hop', 'memes', 'news ', 'youtube 21171 pop', 'rap', 'pop rap', 'electro-hop', 'dance-pop', 'electro house', 'electro-pop 21172 rock', 'easy listening', 'adult contemporary', 'chill', 'teen pop 21173 pop', 'bubblegum pop', 'synth-pop 21174 rock', 'indie folk', 'british folk', 'bluegrass', 'alternative', 'contemporary folk', 'folk rock', 'folk', 'uk 21175 rap', 'r&b', 'pop', 'electronic', 'hip-hop 21176 rap', 'canada 21177 pop', 'r&b', 'rap 21178 pop', 'tradução em português 21179 country', 'rock', 'pop country 21180 pop', 'pop-rock 21181 rock', 'alternative metal', 'alternative rock', 'grunge 21182 rock', 'rap', 'rap rock', 'pop-rock', 'alternative', 'alternative rock 21183 country', 'rock', 'southern rock 21184 pop', 'dance rock', 'pop-rock', 'teen pop', 'singer-songwriter', 'dance-pop 21185 rap 21186 country', 'rock 21187 r&b', 'rap 21188 country 21189 country 21190 country', 'pop country', 'singer-songwriter 21191 country', 'singer-songwriter', 'ballad 21192 pop', 'tv', 'electro', 'dance-pop', 'dance', 'eurodance', 'synth-pop', 'electro-pop 21193 rap', 'pop rap', 'atlanta', 'dmv', 'memes', 'trap 21194 pop', 'jazz 21195 pop', 'edm', 'progressive house', 'house', 'euro house', 'bubblegum pop', 'teen pop', 'dance-pop', 'electro-pop 21196 pop', 'rap', 'experimental pop', 'electronic', 'trinidad & tobago', 'producer 21197 r&b 21198 pop', 'musicals', 'disney', 'tv', 'teen pop', 'soundtrack 21199 rock', 'baroque pop', 'chamber music', 'chamber pop', 'uk', 'alternative pop', 'alternative rock', 'alternative', 'art pop', 'art rock 21200 rock 21201 r&b', 'soul', 'neo soul 21202 country', 'rock', 'pop country', 'australia', 'singer-songwriter 21203 pop', 'italian pop', 'canzone napoletana', 'italy 21204 r&b', 'rap', 'singer-songwriter', 'funk', 'soul', 'soul pop 21205 country', 'power pop', 'pop country 21206 rock', 'rap', 'art rock', 'rap rock', 'hip-hop', 'alternative rock', 'electronic rock 21207 country', 'rock', 'outlaw country 21208 pop', 'rap', 'pop rap 21209 r&b', 'pop', 'cover', 'soundtrack 21210 pop 21211 pop', 'cover', 'screen', 'soundtrack 21212 pop 21213 pop 21214 pop 21215 pop', 'pop-rock 21216 r&b 21217 r&b', 'rap', 'pop 21218 pop', 'electro-pop 21219 pop', 'soundtrack', 'screen', 'cover 21220 rap', 'canada 21221 pop', 'ballad', 'indie pop', 'acoustic', 'tv', 'screen', 'soundtrack', 'cover 21222 rap 21223 pop', 'rap', 'pop rap', 'dirty south', 'electro-hop', 'electro-pop 21224 pop', 'soundtrack', 'cover 21225 pop', 'cover', 'soundtrack', 'screen 21226 pop', 'screen', 'soundtrack 21227 pop', 'dance-pop', 'dance', 'tv', 'soundtrack', 'screen', 'cover 21228 rap', 'rap rock 21229 pop', 'r&b', 'rap', 'east coast', 'trinidad & tobago', 'ballad', 'electronic 21230 rap 21231 rock', 'alternative rock', 'pop-punk 21232 r&b', 'pop', 'alternative r&b', 'piano', 'soul pop', 'soul', 'ballad', 'adult contemporary 21233 r&b 21234 pop', 'country', 'singer-songwriter', 'pop country 21235 rap', 'traducción al español 21236 pop', 'tv', 'screen', 'cover', 'soundtrack 21237 pop', 'screen', 'tv', 'cover', 'soundtrack', 'religion 21238 pop 21239 pop', 'rock', 'pop-punk', 'pop-rock 21240 pop 21241 pop 21242 pop', 'christian', 'cover', 'gospel', 'screen', 'soundtrack 21243 pop', 'ballad 21244 pop', 'reggae', 'easy listening', 'chill 21245 rock 21246 pop', 'electronic', 'edm', 'latin pop', 'electro house', 'electro-pop', 'deep house 21247 rap', 'pop', 'france', 'electro-pop', 'edm', 'dance-pop', 'house', 'electronic', 'dance 21248 r&b', 'soul', 'psychedelic', 'tropical house 21249 pop', 'country', 'adult contemporary', 'orchestral', 'singer-songwriter', 'pop country', 'ballad', 'baroque pop 21250 pop', 'adult contemporary', 'easy listening', 'tv', 'screen', 'soundtrack', 'cover 21251 pop', 'tv', 'screen', 'cover', 'soundtrack 21252 pop 21253 pop', 'cover', 'screen', 'soundtrack 21254 rap', 'synth-pop 21255 country', 'rock 21256 country', 'rock', 'singer-songwriter', 'ballad 21257 rock', 'pop', 'soundtrack', 'pop-punk', 'emo', 'cover 21258 pop', 'musicals', 'cover 21259 country 21260 pop', 'country', 'singer-songwriter', 'pop country', 'bluegrass 21261 rock', 'pop', 'ballad', 'adult contemporary', 'dance-pop 21262 pop', 'teen pop', 'tv', 'disney', 'soundtrack 21263 rap', 'r&b', 'pop', 'memes 21264 rap', 'tradução em português 21265 rock 21266 rap', 'r&b', 'pop', 'canada', 'pop rap', 'electro 21267 r&b', 'rap 21268 rock', 'rap 21269 r&b', 'rap 21270 rock', 'soundtrack', 'gaming', 'sports', 'garage rock', 'blues rock 21271 pop', 'uk 21272 pop', 'dance', 'electro', 'electronic', 'electro-pop', 'dance-pop 21273 rock', 'country', 'pop', 'teen pop', 'singer-songwriter', 'pop country', 'pop-rock 21274 country', 'pop', 'orchestral', 'easy listening', 'piano', 'adult contemporary', 'ballad', 'singer-songwriter', 'pop country 21275 pop', 'euro house', 'progressive house', 'dmv', 'electro house', 'dance-pop 21276 rock', 'country', 'pop', 'dance-pop', 'singer-songwriter', 'pop country', 'pop-punk', 'pop-rock 21277 rock', 'country', 'pop', 'orchestral', 'pop-rock', 'beef', 'ballad', 'singer-songwriter', 'pop country 21278 country', 'pop', 'rock', 'punk rock', 'alternative country', 'pop country', 'singer-songwriter', 'beef', 'alternative rock', 'pop-punk', 'pop-rock 21279 rock', 'country', 'pop', 'orchestral', 'singer-songwriter', 'pop country', 'pop-rock 21280 country', 'pop', 'ballad', 'singer-songwriter', 'pop country 21281 country', 'rock 21282 rock', 'pop', 'country', 'orchestral', 'pop country', 'singer-songwriter', 'pop-rock 21283 r&b', 'rap', 'alternative', 'alternative r&b 21284 country', 'pop', 'ballad', 'singer-songwriter', 'pop country 21285 pop', 'rock', 'country', 'orchestral', 'ballad', 'pop-rock', 'singer-songwriter', 'pop country 21286 pop', 'screen', 'tv', 'soundtrack', 'cover', 'musicals 21287 r&b', 'rock 21288 country', 'rock', 'southern rock', 'singer-songwriter 21289 country', 'rock', 'alternative rock', 'pop country 21290 pop', 'rap 21291 rap 21292 rap', 'en español 21293 country', 'rock', 'pop country', 'ballad 21294 r&b', 'rap', 'atlanta', 'dirty south', 'dmv 21295 rock', 'en español 21296 pop 21297 country', 'singer-songwriter 21298 country', 'rock 21299 rap 21300 country', 'rock', 'cover', 'ballad 21301 pop', 'a cappella', 'teen pop', 'tv', 'screen', 'cover', 'soundtrack 21302 pop', 'rap', 'edm', 'progressive house', 'electro-pop', 'electro house', 'electronic', 'dance 21303 pop 21304 pop 21305 pop', 'screen', 'tv', 'reggae', 'soundtrack', 'cover 21306 r&b', 'rap', 'psychedelic', 'alternative', 'alternative r&b', 'alternative rock 21307 r&b', 'rap', 'chicago rap', 'conscious hip-hop', 'hip-hop 21308 r&b', 'rap 21309 pop', 'country', 'piano', 'ballad 21310 pop', 'r&b 21311 pop', 'electro 21312 r&b', 'rap', 'intro', 'alternative r&b 21313 r&b', 'rap', 'dmv 21314 pop 21315 pop 21316 rap', 'producer', 'west coast 21317 pop', 'remix 21318 pop 21319 pop', 'rock', 'roots', 'folk pop', 'singer-songwriter', 'soft rock', 'easy listening', 'piano', 'folk rock', 'folk', 'acoustic', 'adult alternative', 'adult contemporary', 'ballad', 'pop-rock 21320 pop', 'electro-pop 21321 rap 21322 rap', 'pop', 'electro-pop', 'dance', 'dance-pop 21323 pop', 'tv', 'screen', 'cover', 'soundtrack 21324 pop', 'tv', 'cover', 'soundtrack', 'screen 21325 pop', 'rap', 'r&b', 'ballad 21326 pop', 'soundtrack 21327 rap', 'r&b 21328 pop', 'dance-pop 21329 pop', 'r&b', 'rap', 'trinidad & tobago', 'hip-hop 21330 pop', 'brill building', 'pop-rock', 'adult contemporary', 'easy listening', 'singer-songwriter 21331 r&b', 'pop', 'rap', 'chamber pop', 'electro-pop', 'pop rap', 'breakbeat', 'art pop', 'producer 21332 pop 21333 country', 'rock', 'ballad 21334 rock 21335 pop', 'screen', 'soundtrack 21336 rock', 'alternative', 'alternative rock', 'christmas', 'ballad 21337 pop', 'easy listening', 'screen', 'tv', 'soundtrack', 'teen pop 21338 pop', 'cover', 'screen', 'soundtrack 21339 pop', 'tv', 'soul', 'cover', 'soundtrack 21340 pop', 'rap 21341 pop', 'soundtrack', 'tv 21342 rock 21343 rap 21344 pop', 'rap', 'electro-pop', 'electronic', 'electro-hop 21345 pop', 'screen', 'soundtrack 21346 rap', 'atlanta', 'dirty south 21347 pop', 'christmas', 'cover', 'lgbtq+', 'tv', 'screen', 'soundtrack 21348 pop', 'cover 21349 r&b', 'pop', 'alternative r&b', 'ballad', 'singer-songwriter', 'blues', 'adult contemporary', 'soul 21350 rap 21351 rap 21352 r&b', 'rap 21353 rap', 'dirty south', 'producer', 'memes 21354 rap', 'pop', 'remix 21355 pop', 'r&b', 'rap', 'east coast', 'hip-hop', 'trinidad & tobago', 'canada 21356 country', 'rock', 'ballad 21357 country 21358 pop', 'r&b', 'soul pop', 'soul 21359 rap 21360 rock', 'adult contemporary', 'ballad', 'pop-rock', 'ireland 21361 r&b', 'pop', 'christmas', 'holiday 21362 rap', 'tv', 'electro-pop', 'electronic', 'satire', 'electro', 'comedy 21363 country', 'rock', 'ballad 21364 pop 21365 rap 21366 rap 21367 pop', 'rock', 'singer-songwriter', 'adult contemporary', 'pop-rock', 'christmas 21368 pop', 'electro-pop', 'west coast', 'teen pop', 'boy band 21369 country 21370 country', 'screen 21371 country', 'singer-songwriter', 'pop country', 'adult contemporary', 'easy listening', 'dark pop 21372 rap 21373 pop', 'dance-pop 21374 rock', 'pop', 'singer-songwriter', 'pop-punk', 'synth-pop', 'pop-rock', 'canada 21375 rap', 'east coast', 'orchestral', 'trap 21376 rock 21377 pop 21378 rap 21379 country', 'honky tonk 21380 country', 'rock', 'orchestral', 'singer-songwriter', 'piano', 'ballad 21381 pop', 'uk 21382 rock 21383 rap', 'pop', 'electro house', 'teen pop', 'electro-hop', 'electro-pop', 'electronic', 'dance-pop', 'dance', 'memes 21384 rock', 'punk rock 21385 pop 21386 r&b 21387 rap', 'west coast 21388 pop', 'rap', 'pop rap', 'hip-hop', 'dmv', 'east coast 21389 country', 'pop', 'cover', 'soundtrack', 'screen 21390 rock', 'pop', 'mashup', 'screen', 'soundtrack', 'cover 21391 pop', 'cover', 'screen', 'soundtrack 21392 rock 21393 rap', 'tv', 'electro', 'comedy 21394 pop', 'rap', 'pop rap', 'teen pop', 'uk 21395 rock', 'baroque pop', 'alternative pop', 'alternative', 'pop-rock', 'punk rock', 'alternative rock', 'pop-punk 21396 rock', 'contemporary folk', 'bluegrass', 'adult alternative', 'indie rock', 'folk', 'folk rock', 'uk 21397 pop', 'electronic', 'electro-pop', 'synth-pop', 'lgbtq+ 21398 r&b', 'rap 21399 pop', 'singer-songwriter', 'bubblegum pop 21400 pop', 'cover', 'screen', 'soundtrack 21401 pop', 'screen', 'soundtrack', 'cover 21402 pop', 'tv', 'soundtrack', 'screen', 'cover 21403 rap 21404 pop', 'tv', 'cover', 'soundtrack 21405 pop', 'soundtrack', 'cover 21406 country', 'screen', 'ballad', 'singer-songwriter 21407 pop', 'soundtrack', 'screen', 'indie rock', 'cover 21408 pop', 'rap', 'conscious hip-hop 21409 pop', 'canada 21410 rock', 'adult contemporary', 'pop-rock', 'alternative rock 21411 country', 'rock', 'singer-songwriter 21412 country', 'race / ethnicity', 'ballad 21413 rap 21414 pop', 'teen pop', 'cover', 'screen', 'soundtrack 21415 rock', 'pop', 'soundtrack', 'pop-punk', 'emo', 'cover 21416 pop', 'soundtrack', 'musicals', 'cover 21417 rock', 'pop', 'cover', 'soundtrack', 'tv 21418 pop', 'ballad', 'canada 21419 country', 'rock', 'ballad', 'singer-songwriter 21420 rap', 'rapcore 21421 rap 21422 rap', 'pop', 'dance-pop', 'dance 21423 pop', 'cover', 'electro-pop', 'screen', 'soundtrack 21424 rap 21425 pop', 'cover', 'screen', 'soundtrack 21426 pop', 'soundtrack', 'cover 21427 pop', 'singer-songwriter', 'soul pop', 'adult contemporary', 'ballad', 'piano 21428 pop', 'boy band', 'west coast', 'dance-pop', 'electro-pop', 'teen pop 21429 rap 21430 pop', 'singer-songwriter', 'adult alternative', 'ballad', 'uk 21431 rap', 'dirty south', 'florida rap', 'gangsta rap', 'hardcore hip-hop', 'trap 21432 r&b', 'pop', 'gospel', 'religion', 'christian 21433 country 21434 country 21435 rap', 'pop', 'electro-pop', 'dance-pop', 'remix 21436 rock', 'post-grunge', 'grunge', 'alternative rock', 'indie rock', 'hard rock 21437 rap 21438 country', 'rock 21439 rock 21440 r&b', 'rap', 'dmv 21441 rap', 'electro-hop', 'east coast', 'trinidad & tobago', 'hardcore hip-hop', 'beef 21442 pop 21443 pop 21444 country', 'pop', 'cover', 'soundtrack', 'screen 21445 pop', 'screen', 'soundtrack', 'cover 21446 country', 'ballad', 'canada 21447 pop', 'cover', 'screen', 'soundtrack 21448 rap 21449 rap 21450 rock', 'post-grunge', 'alternative metal 21451 rap', 'soundtrack', 'west coast', 'gangsta rap 21452 pop', 'screen', 'soundtrack', 'cover 21453 country', 'rock', 'singer-songwriter', 'alternative rock', 'ballad 21454 country', 'rock 21455 r&b', 'alternative r&b', 'soul', 'soul pop 21456 country', 'rock', 'adult contemporary', 'easy listening', 'ballad', 'australia 21457 pop', 'r&b', 'soul 21458 country', 'ballad 21459 pop', 'singer-songwriter', 'acoustic', 'canada 21460 pop', 'screen', 'soundtrack', 'bassline 21461 pop', 'ballad', 'screen', 'soundtrack 21462 pop', 'feminism', 'teen pop 21463 pop', 'soundtrack', 'cover 21464 pop', 'cover', 'screen', 'soundtrack 21465 pop', 'screen', 'soundtrack', 'cover 21466 pop 21467 pop', 'cover', 'screen', 'soundtrack 21468 pop', 'memes 21469 rap 21470 r&b 21471 rap 21472 rock 21473 pop', 'soundtrack 21474 rap 21475 pop', 'r&b', 'canada', 'dmv 21476 r&b', 'dmv 21477 rap', 'dirty south', 'florida rap', 'hardcore hip-hop', 'trap 21478 country', 'rock', 'cover', 'memorial 21479 country 21480 country 21481 rap 21482 pop', 'rap', 'electronic', 'house', 'dance-pop', 'electro-hop', 'pop rap', 'electro-pop 21483 pop', 'screen', 'tv 21484 pop', 'dance-pop 21485 pop', 'r&b', 'tv', 'hi-nrg', 'teen pop', 'dance-pop', 'electronic rock', 'soundtrack 21486 rap', 'hip-hop', 'dirty south', 'atlanta', 'trap 21487 country', 'rock 21488 rap', 'country', 'rock', 'ballad', 'pop country', 'country rap', 'southern rock 21489 rap', 'dirty south', 'florida rap', 'gangsta rap', 'hardcore hip-hop', 'trap 21490 pop', 'teen pop', 'dance-pop', 'dance', 'electronic 21491 country', 'rock', 'singer-songwriter 21492 country', 'rock 21493 pop', 'euro house', 'singer-songwriter', 'electro house', 'art pop', 'electro-pop', 'dance-pop 21494 r&b', 'rap 21495 rap 21496 r&b', 'dmv 21497 pop', 'rock', 'alternative rock', 'pop-rock', 'dance-pop 21498 rock', 'pop', 'musicals', 'tv', 'disney', 'teen pop', 'soundtrack', 'pop-rock', 'dance-pop', 'electro-pop 21499 country', 'r&b', 'rock 21500 country', 'rock', 'singer-songwriter 21501 r&b', 'pop', 'electro-pop', 'feminism', 'electronic', 'dance 21502 pop', 'r&b', 'singer-songwriter', 'soul', 'piano', 'ballad 21503 pop', 'ballad', 'blue-eyed soul', 'soul', 'soundtrack', 'cover 21504 pop', 'cover', 'screen', 'soundtrack 21505 rock', 'alternative rock', 'indie rock 21506 rock', 'pop', 'musicals', 'tv', 'ballad', 'teen pop', 'disney', 'soundtrack', 'pop-rock 21507 pop', 'latin pop', 'dance 21508 pop', 'tv', 'ballad', 'soundtrack', 'mashup', 'cover 21509 pop', 'screen', 'cover', 'soundtrack 21510 pop', 'lgbtq+', 'cover', 'soundtrack 21511 pop', 'soul', 'cover 21512 pop', 'musicals', 'cover', 'soundtrack 21513 pop', 'dance', 'electronic 21514 pop', 'alternative rock', 'alternative', 'alternative pop', 'psychedelic 21515 pop', 'rap', 'electro-pop', 'dance-pop', 'pop rap', 'east coast', 'trinidad & tobago 21516 country', 'power pop', 'pop country 21517 rock', 'pop', 'singer-songwriter', 'ballad', 'adult contemporary', 'alternative pop', 'alternative rock', 'pop-rock 21518 country 21519 rap', 'pop', 'france', 'trinidad & tobago', 'electro-pop', 'dance 21520 rap', 'horrorcore 21521 pop', 'alternative', 'indie', 'screen', 'soundtrack', 'cover 21522 pop', 'r&b', 'rap', 'dmv', 'electro-hop 21523 pop', 'ballad', 'soundtrack', 'cover 21524 rock', 'metal', 'progressive metal', 'melodic metalcore', 'alternative metal', 'heavy metal 21525 rap', 'pop 21526 pop', 'cover', 'soundtrack 21527 pop 21528 pop', 'puerto rico', 'latin music', 'em português', 'en español', 'reggaetón 21529 country', 'rock 21530 r&b', 'pop', 'patois', 'producer', 'ragga', 'memes', 'dancehall', 'canada 21531 rock', 'singer-songwriter', 'alternative', 'alternative rock 21532 pop', 'teen pop', 'synth-pop', 'nu-jazz', 'ballad', 'electronic rock', 'electronic', 'electro-pop', 'dance-pop 21533 r&b', 'pop', 'singer-songwriter', 'electronic', 'dance', 'dance-pop', 'eurodance', 'electro-pop', 'latin pop 21534 pop', 'a cappella', 'soundtrack', 'blue-eyed soul', 'cover 21535 pop', 'screen', 'soundtrack 21536 pop 21537 pop', 'ballad 21538 pop', 'soundtrack', 'cover 21539 rap', 'tv', 'hip-hop', 'electro', 'comedy 21540 pop', 'britpop', 'dance-pop', 'soundtrack', 'cover 21541 country', 'rock', 'reggae', 'ska 21542 pop', 'pop-rock', 'cover', 'soundtrack 21543 pop', 'feminism 21544 pop', 'techno', 'electronic rock', 'electro-pop', 'synth-pop', 'electronic 21545 rap 21546 pop', 'cover', 'soundtrack 21547 pop', 'r&b', 'rap 21548 rap', 'canada', 'dirty south', 'florida rap', 'producer 21549 r&b', 'pop 21550 pop', 'soundtrack 21551 pop', 'r&b', 'dance-pop', 'electro-pop 21552 pop', 'soundtrack', 'musicals', 'cover 21553 pop 21554 country', 'rock', 'ballad', 'american idol 21555 pop', 'ballad', 'cover', 'pop country 21556 pop', 'soundtrack', 'cover 21557 pop', 'pop-rock', 'glam rock 21558 pop', 'soundtrack 21559 r&b', 'pop 21560 pop', 'broadway', 'cover', 'screen', 'soundtrack 21561 r&b', 'pop', 'rap 21562 pop 21563 pop', 'techno', 'electronic rock', 'dance-pop', 'electronic', 'electro-pop', 'synth-pop 21564 rap', 'hip-hop', 'producer 21565 pop', 'traditional', 'tv', 'dance', 'dance-pop', 'mashup', 'cover 21566 country', 'rock', 'ballad 21567 pop', 'soundtrack 21568 r&b', 'pop', 'gangsta rap 21569 r&b', 'rap 21570 pop', 'rock', 'uk', 'electronic', 'electronic rock', 'alternative pop', 'alternative', 'alternative rock', 'pop-rock 21571 pop', 'rap', 'pop rap', 'electro house', 'cuba', 'dmv', 'electro-pop', 'dance-pop 21572 r&b', 'pop', 'soul', 'neo soul', 'soul pop 21573 rock', 'art rock', 'pop-rock', 'electronic rock', 'ballad', 'alternative rock 21574 r&b', 'rap 21575 country', 'rock 21576 pop', 'r&b', 'tv', 'teen pop', 'dance-pop', 'synth-pop', 'soundtrack 21577 rock', 'pop', 'adult contemporary', 'pop-rock 21578 rap', 'hyphy', 'west coast 21579 country', 'ballad 21580 rock', 'soundtrack', 'post-grunge', 'alternative', 'alternative rock 21581 pop', 'rap', 'electro-pop 21582 pop', 'cover 21583 pop 21584 country', 'rock 21585 pop', 'rock', 'ballad', 'adult alternative', 'adult contemporary', 'piano', 'pop-rock', 'blue-eyed soul 21586 pop', 'bachata', 'latin pop', 'latin music', 'en español 21587 country 21588 pop', 'rap', 'pop rap 21589 pop', 'cover 21590 country', 'rock 21591 pop', 'rap', 'pop rap', 'cuba', 'latin music', 'en español', 'latin rap', 'dance-pop 21592 pop 21593 r&b', 'pop', 'rap', 'teen pop', 'hip-hop', 'pop-rock 21594 r&b', 'pop', 'pop-rock', 'synth-pop 21595 country', 'rock 21596 pop', 'dance rock', 'dance-pop', 'electronic rock', 'electro-pop', 'pop-rock 21597 pop', 'cover', 'ballad 21598 pop', 'cover 21599 rap 21600 pop', 'rap', 'electro-pop 21601 pop', 'teen pop', 'eurodance', 'dance-pop', 'electro-pop 21602 pop', 'cover', 'disney', 'soundtrack', 'dance', 'dance-pop 21603 r&b', 'pop', 'neo soul', 'soul', 'soul pop 21604 pop', 'rock', 'roots', 'adult contemporary', 'pop-rock', 'singer-songwriter 21605 country', 'rock 21606 pop 21607 pop 21608 pop', 'cover 21609 rock 21610 country', 'singer-songwriter', 'honky tonk 21611 rap', 'pop', 'electro house', 'dance 21612 pop', 'baroque pop', 'piano', 'adult contemporary', 'ballad 21613 pop 21614 rock 21615 rock', 'pop-punk', 'uk', 'alternative', 'alternative rock 21616 r&b', 'rap 21617 rap 21618 r&b', 'alternative r&b 21619 rap 21620 country', 'rock', 'ballad 21621 pop', 'rock', 'teen pop', 'singer-songwriter', 'pop-punk', 'pop-rock', 'canada 21622 pop', 'reggaetón', 'en español 21623 rock', 'post-grunge', 'grunge', 'alternative rock', 'indie rock', 'hard rock 21624 r&b', 'pop', 'piano', 'adult contemporary', 'mental health', 'soul pop', 'soul', 'ballad 21625 r&b', 'rap 21626 country', 'rock', 'ballad 21627 pop', 'rock', 'dance', 'blues 21628 pop 21629 pop', 'rock', 'pop-rock', 'punk rock', 'pop-punk 21630 country', 'pop country', 'australia', 'singer-songwriter 21631 pop', 'electro-swing', 'house', 'românia', 'dance-pop', 'dance 21632 rock', 'adult alternative', 'pop-rock', 'alternative rock', 'funk rock 21633 rap', 'soul', 'hip-hop', 'producer 21634 r&b', 'alternative r&b', 'canada 21635 rap 21636 rap 21637 r&b', 'singer-songwriter', 'soul', 'soul pop', 'funk 21638 rap 21639 rap', 'west coast 21640 country', 'ballad', 'pop country 21641 r&b', 'pop 21642 pop', 'rap', 'electronic', 'trance 21643 pop', 'r&b', 'rock', 'singer-songwriter', 'adult contemporary', 'pop-rock', 'piano', 'soul pop', 'blues', 'adult alternative', 'blue-eyed soul', 'soul 21644 country 21645 pop 21646 rock', 'country', 'singer-songwriter', 'honky tonk 21647 rock', 'nu-metal', 'alternative metal', 'hard rock', 'thrash metal', 'metal', 'heavy metal', 'groove metal 21648 pop', 'adult contemporary', 'nu disco', 'dance', 'dance-pop', 'synth-pop', 'uk 21649 rock 21650 pop 21651 rap', 'uk rap', 'uk 21652 rap 21653 rap', 'trap', 'pop rap', 'canada 21654 pop', 'r&b 21655 rap', 'dubstep', 'experimental hip-hop', 'hip-hop', 'producer 21656 pop 21657 country', 'singer-songwriter 21658 rock 21659 rap', 'chart history 21660 rap 21661 country', 'rock 21662 rock', 'adult contemporary', 'ballad', 'pop-rock', 'ireland 21663 r&b', 'hip-hop 21664 rap', 'canada 21665 country', 'pop country', 'singer-songwriter 21666 rap 21667 pop 21668 rock', 'dubstep', 'indie', 'synth-pop', 'alternative rock', 'industrial rock', 'electronic rock 21669 rock', 'singer-songwriter', 'adult contemporary 21670 country 21671 country 21672 country', 'ballad 21673 pop', 'electro-pop', 'dance-pop', 'progressive house', 'france', 'edm', 'dance 21674 pop 21675 rock', 'pop-rock', 'orchestral', 'art pop', 'art rock', 'alternative', 'alternative rock 21676 country', 'singer-songwriter', 'adult contemporary', 'ballad 21677 r&b', 'rap', 'dirty south', 'dmv', 'florida rap 21678 rap', 'west coast', 'alternative', 'hardcore hip-hop 21679 rap', 'ballad 21680 r&b', 'pop 21681 rap 21682 rap', 'pop', 'france', 'electro', 'electro-pop', 'edm', 'trinidad & tobago', 'dance-pop', 'electronic', 'dance 21683 r&b', 'pop', 'dance-pop', 'soul pop', 'adult contemporary', 'ballad', 'electro-pop', 'electronic', 'dance 21684 r&b', 'italy', 'dmv', 'eurodance', 'electro house 21685 country', 'pop country', 'ballad 21686 rap', 'trap 21687 rock', 'alternative rock 21688 pop', 'rap', 'edm', 'electronic', 'electro house', 'electro-pop 21689 rap', 'canada', 'gangsta rap', 'hardcore hip-hop 21690 pop', 'rap', 'electro-pop', 'dance-pop', 'dance 21691 rap 21692 rap 21693 rap 21694 rap 21695 pop', 'teen pop', 'bubblegum pop 21696 country', 'orchestral', 'piano', 'ballad 21697 r&b', 'rock', 'uk', 'blues 21698 country', 'rock 21699 r&b', 'rock', 'pop-rock 21700 country', 'rock', 'ballad 21701 r&b', 'rap', 'dirty south', 'dmv 21702 pop', 'rock', 'adult contemporary', 'adult alternative', 'baroque pop', 'electronic', 'electro-pop', 'alternative pop', 'alternative rock', 'alternative', 'electronic rock', 'synth-pop', 'pop-rock', 'uk 21703 country', 'rock 21704 r&b', 'cover', 'uk r&b', 'uk', 'soul jazz', 'soul', 'jazz 21705 country', 'singer-songwriter', 'ballad 21706 r&b', 'rap', 'dirty south', 'dmv', 'florida rap 21707 pop', 'rap 21708 rock', 'country', 'singer-songwriter', 'ballad 21709 r&b', 'pop', 'electro-pop', 'electronic 21710 pop 21711 pop', 'tv', 'cover 21712 rap 21713 r&b', 'pop 21714 country', 'rock', 'ballad', 'southern rock 21715 pop', 'soundtrack', 'cover 21716 country', 'rock', 'singer-songwriter 21717 pop', 'r&b 21718 rap 21719 r&b', 'pop', 'soft rock', 'orchestral', 'adult contemporary', 'soul pop', 'soul', 'ballad', 'motown', 'easy listening', 'soundtrack 21720 rock 21721 r&b', 'rap 21722 pop', 'soundtrack 21723 r&b', 'rap 21724 pop', 'r&b 21725 pop', 'rock', 'pop-rock', 'punk rock', 'pop-punk 21726 country', 'rock', 'pop country', 'singer-songwriter 21727 country', 'rock', 'americana', 'bluegrass', 'singer-songwriter 21728 rock', 'pop', 'pop-rock', 'halloween', 'tv', 'screen', 'disney', 'soundtrack 21729 rock 21730 pop', 'rock', 'dance-pop', 'alternative rock', 'pop-rock 21731 pop', 'screen', 'soundtrack 21732 pop', 'rap 21733 rap 21734 rap', 'pop', 'dance-pop 21735 pop 21736 rap', 'trinidad & tobago', 'remix 21737 r&b', 'pop 21738 pop', 'rap', 'west coast', 'soundtrack 21739 pop', 'rock 21740 r&b', 'pop 21741 rap', 'canada 21742 rap 21743 pop 21744 pop', 'dance-pop 21745 pop', 'teen pop', 'uk 21746 r&b', 'rap', 'pop rap', 'trap', 'trinidad & tobago', 'canada 21747 rock', 'ballad', 'piano 21748 pop', 'holiday', 'christmas', 'canada 21749 pop', 'adult contemporary', 'easy listening', 'orchestral', 'piano', 'teen pop', 'singer-songwriter', 'ballad', 'soundtrack 21750 rap 21751 country', 'singer-songwriter 21752 pop', 'bachata', 'latin pop', 'latin music', 'en español 21753 rap 21754 r&b', 'rock', 'electronic rock', 'electronic', 'electro-pop', 'alternative pop', 'alternative rock', 'alternative', 'uk', 'pop-rock 21755 country', 'rock 21756 rap 21757 pop', 'christmas', 'canada 21758 pop', 'electro-pop 21759 rock', 'alternative', 'pop-rock', 'alternative pop', 'orchestral', 'gospel', 'baroque pop', 'alternative rock 21760 r&b', 'rap', 'hip-hop', 'dmv 21761 rock', 'soundtrack', 'gaming', 'garage rock', 'blues rock', 'blues 21762 pop 21763 country', 'rock 21764 country', 'rock 21765 rap 21766 pop 21767 rap 21768 pop', 'christmas', 'canada 21769 pop', 'house', 'electronic rock', 'electronic', 'dance-pop', 'synth-pop 21770 pop', 'country', 'rock', 'memorial', 'pop country', 'ballad', 'singer-songwriter 21771 country', 'rock 21772 rap', 'pop', 'christmas', 'canada 21773 pop', 'dance', 'electro', 'dubstep', 'electronic 21774 country', 'pop', 'ballad', 'singer-songwriter', 'pop country 21775 country', 'pop', 'acoustic', 'adult contemporary', 'singer-songwriter', 'ballad', 'pop country 21776 country', 'pop', 'teen pop', 'singer-songwriter', 'pop country 21777 rock', 'pop', 'country', 'pop country 21778 rap', 'trap', 'conscious hip-hop 21779 country', 'rock 21780 pop', 'cover 21781 country', 'rock', 'singer-songwriter', 'memorial 21782 pop', 'reggae 21783 country', 'rock', 'cover 21784 r&b', 'alternative r&b', 'future bass', 'canada 21785 pop 21786 rap', 'producer', 'hyphy', 'west coast', 'canada 21787 r&b', 'rap', 'canada 21788 pop', 'mashup 21789 pop 21790 pop', 'mashup', 'cover 21791 rap', 'canada 21792 r&b', 'rap', 'canada 21793 r&b', 'pop', 'hip-hop 21794 pop', 'rap', 'electronic 21795 pop', 'dance-pop', 'dance', 'electro house', 'house', 'electro-pop 21796 rap', 'atlanta', 'memes', 'trap 21797 rock 21798 rap', 'hip-hop', 'west coast', 'hyphy 21799 pop', 'en español 21800 pop 21801 pop', 'screen', 'soundtrack 21802 rap 21803 pop', 'lgbtq+', 'cover 21804 rock', 'pop', 'adult alternative', 'pop-rock', 'alternative dance', 'alternative rock', 'alternative pop', 'electro-pop', 'dance-pop', 'synth-pop 21805 r&b', 'pop', 'rap', 'reggae 21806 pop 21807 pop', 'screen', 'soundtrack 21808 pop', 'canada', 'holiday', 'christmas', 'jazz 21809 country', 'rock 21810 pop 21811 r&b', 'rap 21812 pop', 'mashup 21813 pop', 'rock', 'teen pop', 'adult alternative', 'adult contemporary', 'pop-rock', 'piano', 'ballad 21814 pop 21815 pop', 'screen', 'soundtrack 21816 country', 'r&b', 'rock', 'ballad', 'pop country', 'dark pop 21817 country', 'rock', 'pop country', 'alternative rock', 'australia 21818 pop 21819 pop', 'holiday', 'christmas 21820 rap', 'trap', 'canada 21821 country', 'pop 21822 country', 'rock 21823 pop', 'christmas', 'soundtrack', 'screen', 'cover 21824 country', 'news 21825 pop', 'canada', 'cover', 'christmas', 'holiday', 'jazz 21826 pop', 'rap 21827 pop 21828 pop 21829 rap 21830 pop', 'edm', 'dance', 'electro', 'electronic', 'dubstep 21831 pop', 'glam rock', 'pop-rock', 'ballad 21832 rap', 'diss track', 'trinidad & tobago', 'electro-hop', 'electro', 'experimental', 'hyphy', 'bounce', 'beef 21833 rap 21834 rap', 'crunk 21835 rap 21836 rap 21837 pop', 'rock', 'acoustic', 'singer-songwriter', 'soft rock', 'easy listening', 'folk rock', 'folk', 'adult alternative', 'adult contemporary', 'ballad', 'pop-rock 21838 rock', 'dance', 'dubstep 21839 pop 21840 pop', 'alternative rock', 'soft rock', 'adult contemporary', 'alternative pop', 'alternative', 'indie', 'ballad', 'new zealand', 'australia', 'belgië/belgique', 'art pop', 'indie pop 21841 country 21842 pop', 'rap', 'pop rap', 'soul', 'producer 21843 rock', 'pop', 'folk pop', 'folk rock', 'folk', 'adult alternative', 'adult contemporary', 'singer-songwriter', 'pop-rock 21844 rock 21845 rock 21846 pop', 'boy band', 'ireland', 'uk', 'electro-pop', 'electronic', 'synth-pop', 'teen pop', 'dance-pop 21847 pop', 'chamber music', 'art pop', 'adult alternative', 'piano', 'alternative pop', 'ballad', 'baroque pop 21848 pop', 'rock', 'adult alternative', 'pop-rock', 'electronic rock', 'electro-pop', 'electronic', 'indie', 'indie pop', 'indie rock', 'alternative pop', 'alternative', 'alternative rock 21849 rap', 'hip-hop', 'rap rock', 'atlanta', 'trap 21850 pop', 'ballad 21851 rap', 'hip-hop 21852 pop 21853 rock', 'pop', 'mashup', 'cover 21854 pop 21855 pop 21856 r&b', 'rap', 'soul 21857 country 21858 r&b', 'pop', 'rap', 'psychedelic soul', 'hip-hop', 'producer 21859 country', 'rock 21860 rap', 'electro-pop', 'electronic', 'edm', 'electro house 21861 rap 21862 rap', 'pop', 'dance-pop 21863 pop 21864 pop 21865 pop', 'cover', 'screen', 'soundtrack 21866 pop', 'cover 21867 pop', 'cover', 'screen', 'soundtrack 21868 r&b', 'rap 21869 rap', 'remix', 'trap 21870 r&b', 'rap 21871 pop', 'spanish pop 21872 country', 'rock 21873 pop', 'teen pop', 'piano', 'dance-pop', 'dance', 'electro house', 'electro-pop', 'alternative dance', 'alternative pop', 'uk', 'electronic 21874 rap', 'hip-hop', 'underground hip-hop', 'dirty south', 'producer 21875 pop 21876 rap 21877 pop', 'teen pop', 'dance-pop 21878 pop', 'rap', 'techno', 'dance-pop', 'teen pop', 'pop rap', 'electro-hop', 'electro house', 'trinidad & tobago 21879 r&b', 'pop', 'dmv', 'house', 'edm', 'dance 21880 pop', 'ireland', 'bubblegum pop', 'teen pop', 'boy band', 'pop-rock', 'uk 21881 rock', 'pop', 'alternative r&b', 'soul pop', 'pop-rock 21882 country', 'rock 21883 r&b', 'pop', 'ballad 21884 pop', 'france', 'dmv', 'dance', 'remix 21885 rap', 'pop 21886 rock', 'glitch hop', 'electro', 'electronic', 'dance 21887 pop', 'dubstep', 'house', 'progressive house', 'electronic 21888 pop', 'rap 21889 rock', 'country', 'pop country', 'power pop', 'singer-songwriter 21890 pop', 'dance', 'dance-pop', 'teen pop', 'canada', 'memes 21891 pop', 'mashup', 'screen', 'soundtrack 21892 pop', 'rock', 'progressive rock', 'teen pop', 'adult alternative', 'pop-rock', 'adult contemporary', 'alternative rock', 'alternative pop 21893 pop', 'pop-rock', 'cover', 'screen', 'soundtrack 21894 pop 21895 pop', 'pop-rock 21896 r&b 21897 r&b', 'pop', 'alternative r&b', 'electronic 21898 pop', 'cover 21899 rap 21900 country', 'rock', 'ballad 21901 rock', 'alternative', 'adult alternative', 'alternative rock 21902 rap 21903 rap', 'east coast', 'trinidad & tobago', 'hardcore hip-hop 21904 country', 'rock', 'piano', 'ballad', 'singer-songwriter 21905 rap 21906 rap 21907 rap', 'trap', 'atlanta 21908 r&b', 'rap 21909 country', 'rock', 'ballad', 'singer-songwriter', 'adult alternative', 'americana', 'blues rock', 'pop-rock 21910 pop', 'indie pop', 'electro-pop', 'synthwave', 'dream pop', 'synth-pop', 'electronic 21911 pop', 'rap', 'dance-pop', 'electronic 21912 country', 'rock', 'orchestral', 'easy listening', 'bluegrass', 'ballad 21913 r&b 21914 country', 'rock', 'ballad', 'religion', 'christian 21915 pop', 'teen pop', 'pop-rock 21916 rock', 'pop', 'ireland', 'teen pop', 'ballad', 'british rock', 'boy band', 'pop-rock', 'uk 21917 country', 'rock', 'cover 21918 r&b', 'rap 21919 pop', 'rap', 'disney', 'teen pop', 'tv', 'soundtrack', 'dance', 'dance-pop 21920 rock', 'country', 'pop', 'alternative pop', 'pop-rock', 'alternative', 'screen', 'alternative rock', 'soundtrack 21921 rock', 'synth-pop', 'singer-songwriter 21922 pop', 'soundtrack 21923 country 21924 rock', 'hard rock 21925 pop 21926 r&b', 'soul pop 21927 rap', 'pop', 'teen pop', 'canada 21928 rap 21929 r&b 21930 pop', 'patois', 'jamaica', 'dancehall 21931 rap 21932 country', 'rock 21933 pop', 'soundtrack', 'sertanejo', 'latin music', 'em português', 'brasil 21934 pop 21935 pop', 'dance-pop', 'electronic', 'remix 21936 rap', 'pop', 'r&b', 'dance-pop 21937 rap', 'chart history 21938 country', 'rock 21939 r&b', 'pop', 'rap', 'trinidad & tobago', 'dmv 21940 r&b', 'rap', 'dirty south', 'dmv', 'florida rap', 'trap', 'trinidad & tobago 21941 pop', 'r&b', 'dance', 'dance-pop', 'baroque pop', 'teen pop 21942 rap', 'trinidad & tobago', 'east coast', 'atlanta', 'electro-hop', 'trap 21943 r&b', 'pop', 'rap', 'alternative pop', 'electro-pop', 'dance-pop', 'trinidad & tobago', 'synth-pop 21944 rap 21945 r&b', 'rap', 'east coast', 'new york', 'dmv 21946 rock 21947 pop', 'rock', 'iceland', 'pop-rock', 'folk rock', 'folk', 'alternative', 'alternative rock 21948 country', 'pop country 21949 rap 21950 pop 21951 rap', 'hip-hop', 'pop rap', 'atlanta', 'trap 21952 pop 21953 r&b', 'rap 21954 pop', 'mashup 21955 pop', 'rap', 'pop-rock', 'dance-pop 21956 rock', 'rap', 'industrial rock', 'rap rock', 'alternative rock', 'electronic rock 21957 rap', 'trap 21958 rap', 'florida rap', 'canada', 'trap', 'beef 21959 r&b', 'dmv 21960 country', 'rock 21961 pop', 'rock', 'indie pop', 'art pop', 'world music', 'alternative', 'australia', 'indie 21962 r&b', 'rap', 'soundtrack', 'hip-hop 21963 rap', 'atlanta', 'trap 21964 rap 21965 pop', 'rap', 'pop rap', 'electro-hop', 'electro-pop 21966 pop 21967 r&b', 'pop', 'singer-songwriter', 'eurodance', 'dance', 'dance-pop', 'electro-pop', 'dark pop', 'electronic 21968 pop 21969 pop', 'musicals', 'tv', 'cover 21970 country', 'rock', 'piano', 'adult contemporary', 'singer-songwriter', 'ballad', 'pop country 21971 pop', 'rap', 'country rap 21972 country', 'alternative country', 'feminism 21973 pop', 'ballad 21974 country', 'screen', 'pop country 21975 country', 'singer-songwriter', 'alternative country', 'folk', 'americana 21976 rap', 'canada', 'trap 21977 pop', 'cover 21978 pop 21979 pop', 'cover 21980 country', 'rock 21981 rap', 'r&b', 'pop', 'singer-songwriter', 'electronic 21982 country', 'rock', 'power pop', 'ballad', 'cover 21983 rap 21984 rap', 'alternative rock', 'pop rap', 'synth-pop 21985 country 21986 country', 'singer-songwriter', 'ballad 21987 pop', 'rock', 'ballad', 'easy listening', 'adult alternative', 'adult contemporary', 'pop-rock', 'folk rock', 'folk', 'american idol 21988 pop', 'adult contemporary', 'teen pop', 'singer-songwriter', 'dance-pop 21989 rap', 'boom bap', 'chicago rap', 'conscious hip-hop', 'hip-hop 21990 pop', 'r&b', 'italy', 'dmv', 'dance-pop', 'edm', 'dance 21991 r&b', 'pop 21992 r&b', 'pop 21993 pop', 'american idol 21994 r&b', 'pop', 'teen pop', 'canada 21995 r&b', 'rap 21996 pop', 'boy band', 'uk', 'electronic', 'dance-pop 21997 country', 'singer-songwriter', 'news 21998 rap', 'pop', 'teen pop', 'canada 21999 rap 22000 country', 'rock', 'pop country 22001 rap', 'trinidad & tobago 22002 pop', 'rock', 'indie folk', 'indie', 'american folk', 'americana', 'folk pop', 'alternative', 'folk', 'adult alternative', 'adult contemporary', 'indie pop', 'folk rock 22003 pop', 'rock', 'folk pop', 'alternative pop', 'alternative rock', 'pop-rock', 'alternative 22004 rock', 'soundtrack', 'gaming', 'garage rock', 'blues', 'blues rock 22005 country', 'power pop', 'ballad 22006 pop', 'rap', 'dubstep', 'ballad', 'trap', 'teen pop', 'dark pop', 'dance', 'dance-pop', 'canada', 'electronic 22007 pop', 'teen pop', 'electro-pop', 'bubblegum pop 22008 country', 'rock', 'ballad 22009 rock', 'pop 22010 country', 'rock', 'ballad 22011 rap 22012 pop', 'adult contemporary', 'dance-pop', 'pop-rock 22013 pop', 'trinidad & tobago', 'electro house', 'dubstep', 'electronica', 'teen pop', 'electronic', 'dance-pop', 'dance', 'canada 22014 rap', 'canada 22015 pop', 'rock', 'synth-pop 22016 rap', 'pop', 'teen pop', 'canada 22017 country', 'rock 22018 pop', 'bubblegum pop', 'teen pop', 'electro-pop', 'dance-pop 22019 pop 22020 pop', 'gaming', 'electronic', 'uk 22021 rap 22022 rock', 'rap', 'rap rock', 'alternative rock', 'electronic rock 22023 pop', 'rock', 'pop-rock', 'boy band', 'teen pop', 'dance-pop', 'electronic rock 22024 country', 'rock 22025 pop', 'rock', 'electro-pop 22026 country', 'rock', 'rockabilly 22027 rap', 'hardcore hip-hop', 'trap 22028 r&b', 'rap 22029 pop', 'rap', 'electronic 22030 r&b', 'psychedelic soul', 'downtempo', 'neo soul', 'alternative r&b 22031 rap', 'new york', 'posse cut', 'canada', 'trap 22032 country 22033 pop', 'folk pop', 'easy listening', 'adult contemporary', 'ballad', 'acoustic', 'adult alternative', 'singer-songwriter', 'uk 22034 pop', 'rock', 'folk pop', 'folk', 'adult contemporary', 'adult alternative', 'folk rock', 'pop-rock 22035 country 22036 country', 'rock 22037 pop', 'rock', 'pop-rock', 'alternative rock', 'electronic rock', 'ska 22038 rap 22039 rock', 'new wave', 'heartland rock', 'alternative rock 22040 rock', 'adult alternative 22041 rap 22042 rap', 'dirty south', 'atlanta', 'trap 22043 pop', 'rap', 'electro', 'dance', 'dance-pop', 'electro-pop', 'edm', 'electronic', 'electro house', 'trinidad & tobago 22044 country', 'rock', 'singer-songwriter 22045 country', 'rock', 'piano', 'power pop', 'ballad 22046 country', 'honky tonk 22047 rap', 'east coast', 'new york', 'west coast 22048 pop', 'r&b', 'alternative r&b', 'neo soul', 'trip-hop', 'soul', 'soul pop 22049 rap', 'canada', 'dmv 22050 rock', 'electronic rock', 'dubstep 22051 pop', 'r&b', 'rap', 'soul pop', 'singer-songwriter 22052 r&b', 'pop 22053 pop', 'rap', 'cloud rap', 'trap', 'conscious hip-hop', 'memes', 'west coast', 'producer 22054 rock', 'contemporary folk', 'british folk', 'alternative', 'indie folk', 'bluegrass', 'adult alternative', 'adult contemporary', 'folk', 'folk rock', 'uk 22055 rock', 'country', 'pop', 'synth-pop', 'electronic', 'electro-pop', 'teen pop', 'bubblegum pop', 'pop country', 'singer-songwriter', 'dance-pop', 'pop-rock 22056 r&b', 'rap', 'dirty south', 'atlanta', 'trap 22057 country', 'r&b', 'rock', 'pop country 22058 rock', 'alternative', 'alternative rock', 'pop-punk', 'pop-rock', 'power pop', 'punk revival', 'punk rock 22059 rap 22060 rap 22061 rap', 'r&b', 'dmv', 'french r&b 22062 rock', 'pop', 'electro-pop', 'uk', 'synth rock', 'alternative pop', 'alternative rock', 'pop-rock', 'synth-pop', 'electronic 22063 pop', 'rock', 'piano', 'pop rap', 'ireland', 'pop-rock', 'philosophy 22064 country', 'rock', 'power pop', 'ballad', 'singer-songwriter 22065 r&b 22066 country', 'rock', 'blues', 'power pop', 'pop country', 'singer-songwriter 22067 rap 22068 rap', 'chicago drill', 'trap', 'drill 22069 pop', 'rock', 'adult alternative', 'adult contemporary', 'pop-rock 22070 pop', 'rap 22071 pop', 'r&b', 'rap 22072 country', 'pop 22073 pop', 'rap', 'memes', 'comedy', 'pop rap', 'indie rap 22074 pop 22075 rap', 'r&b 22076 country', 'pop', 'soft rock', 'pop country', 'charity', 'singer-songwriter 22077 pop', 'r&b', 'rap', 'singer-songwriter', 'remix', 'ballad', 'piano', 'neo soul', 'soul pop', 'soul 22078 rap', 'east coast', 'producer 22079 pop', 'edm', 'dance-pop', 'k-pop (케이팝)', 'south korea', 'electro-pop', 'memes', 'genius korea', 'korean 22080 rap 22081 r&b', 'pop 22082 rock', 'pop-rock 22083 pop', 'synth-pop', 'electro-pop', 'dance', 'dance-pop', 'canada 22084 pop', 'electro house', 'dance-pop 22085 pop 22086 rap', 'pop', 'ska', 'pop-rock', 'britpop', 'uk', 'remix 22087 country', 'rock', 'ballad', 'singer-songwriter 22088 r&b', 'pop', 'electro-pop', 'dance 22089 pop', 'rock', 'piano', 'pop-rock', 'ballad 22090 pop', 'scandinavia', 'scandipop', 'sverige', 'progressive house', 'dance-pop', 'dance', 'electronic 22091 r&b', 'rap', 'east coast 22092 r&b', 'rap', 'dmv', 'west coast 22093 pop', 'folk pop', 'teen pop', 'ballad', 'canada 22094 r&b', 'pop', 'singer-songwriter', 'eurodance', 'dance', 'dance-pop', 'electro-pop', 'electronic 22095 rock', 'country', 'honky tonk', 'singer-songwriter 22096 country', 'pop country 22097 country', 'adult contemporary', 'easy listening', 'folk pop', 'folk', 'ballad', 'pop country', 'singer-songwriter 22098 pop', 'electro-pop 22099 r&b', 'pop', 'synth-pop', 'electronic', 'ballad 22100 rock', 'folk rock', 'folk pop', 'uk 22101 pop', 'rap', 'dance 22102 rock', 'folk pop', 'folk rock', 'uk 22103 rock', 'folk pop', 'folk rock', 'uk 22104 pop 22105 rock', 'folk pop', 'folk rock', 'uk 22106 rock', 'folk pop', 'folk rock', 'uk 22107 rock', 'pop', 'ireland', 'alternative rock', 'british rock', 'pop-rock', 'teen pop', 'boy band', 'bubblegum pop', 'uk 22108 country', 'pop', 'singer-songwriter', 'pop country', 'pop-rock 22109 rock', 'pop', 'orchestral', 'adult alternative', 'soundtrack', 'uk', 'theme song 22110 pop', 'new wave', 'funk rock', 'funk-pop', 'pop-rock', 'reggae rock 22111 country', 'rock 22112 rap', 'psychedelic', 'experimental hip-hop', 'hip-hop 22113 country', 'power pop', 'ballad', 'singer-songwriter 22114 pop', 'alternative', 'tv', 'screen', 'cover', 'soundtrack 22115 rock', 'uk 22116 r&b', 'rap 22117 country', 'rock 22118 rock', 'pop', 'adult contemporary', 'dance-pop', 'pop country', 'electronic', 'singer-songwriter', 'pop-rock', 'dubstep', 'electro-pop', 'memes 22119 pop', 'electro', 'electronic', 'dance', 'experimental pop', 'nu disco', 'uk', 'electro-pop', 'dance-pop', 'synth-pop 22120 country', 'rock', 'ballad', 'power pop', 'cover 22121 country', 'rock', 'singer-songwriter', 'ballad', 'easy listening', 'bluegrass', 'classical crossover 22122 rock', 'pop', 'pop country', 'alternative rock', 'pop-rock', 'singer-songwriter 22123 rap', 'bounce', 'dirty south 22124 pop 22125 country 22126 pop', 'electro-pop', 'dance', 'uk', 'electronic 22127 pop 22128 pop', 'bubblegum pop', 'teen pop', 'singer-songwriter', 'dance-pop 22129 pop', 'country', 'adult contemporary', 'ballad', 'pop country', 'singer-songwriter 22130 country', 'pop', 'folk pop', 'acoustic', 'ballad', 'adult contemporary', 'pop country', 'singer-songwriter', 'folk 22131 rap', 'old style translation', 'traduction française 22132 pop', 'country', 'pop-rock', 'pop country', 'singer-songwriter 22133 country', 'pop', 'adult contemporary', 'bubblegum pop', 'pop country', 'singer-songwriter 22134 pop 22135 rap', 'traduction française', 'old style translation 22136 rap', 'trap 22137 country', 'rock', 'power pop', 'dark pop', 'bluegrass 22138 rap', 'canada', 'east coast', 'west coast', 'posse cut', 'atlanta', 'dirty south', 'gangsta rap 22139 r&b', 'dmv 22140 pop', 'r&b', 'future garage', 'downtempo', 'canada', 'alternative pop', 'alternative r&b 22141 pop', 'country', 'pop country 22142 country', 'rock 22143 country', 'rock', 'honky tonk', 'pop country 22144 pop', 'r&b', 'rap 22145 country', 'rap', 'alternative country 22146 pop', 'dance-pop', 'electronic 22147 country', 'rock', 'dark pop', 'alternative country 22148 pop', 'adult contemporary', 'piano', 'ireland', 'british folk', 'ballad', 'teen pop', 'boy band', 'folk', 'uk 22149 pop', 'screen', 'soundtrack 22150 country', 'pop', 'pop country', 'ballad 22151 pop', 'ireland', 'teen pop', 'electro-pop', 'boy band', 'uk 22152 rap', 'hyphy', 'west coast 22153 pop', 'the voice 22154 pop', 'the voice', 'cover 22155 country', 'ballad', 'honky tonk 22156 rock 22157 rap 22158 country', 'teen pop', 'ballad', 'pop country', 'singer-songwriter 22159 pop', 'rap', 'electronic', 'dance-pop', 'dance', 'pop rap', 'electro house', 'edm', 'electro-pop 22160 rap 22161 pop', 'the voice', 'cover 22162 pop', 'cover', 'the voice 22163 country', 'rock', 'pop country 22164 rap 22165 rap', 'pop', 'bubblegum pop', 'pop rap 22166 r&b', 'rap 22167 r&b', 'pop', 'easy listening', 'adult contemporary', 'piano', 'ballad', 'soul pop 22168 rock', 'pop', 'singer-songwriter', 'teen pop', 'dance-pop', 'adult contemporary', 'ballad', 'pop-rock 22169 pop 22170 rock', 'alternative', 'indie folk', 'indie', 'american folk', 'folk pop', 'folk', 'adult alternative', 'americana', 'pop-rock', 'indie rock', 'folk rock 22171 rap 22172 r&b', 'rap', 'trap 22173 pop', 'cover', 'the voice 22174 rap', 'chicago drill', 'trap', 'drill 22175 country', 'ballad', 'singer-songwriter', 'alternative country', 'pop country', 'americana 22176 rap 22177 country', 'pop country 22178 rap 22179 rap', 'dirty south', 'hip-hop', 'atlanta', 'trap 22180 pop', 'the voice 22181 rap', 'hip-hop 22182 pop', 'electro', 'electronic', 'dance', 'dance-pop', 'electro-pop 22183 country', 'pop 22184 pop', 'soundtrack', 'screen', 'musicals 22185 rap 22186 rock', 'pop', 'ireland', 'british rock', 'teen pop', 'pop-rock', 'boy band', 'uk 22187 rap', 'pop', 'r&b', 'trap 22188 country', 'rock', 'power pop', 'memorial 22189 rap', 'memes', 'posse cut', 'diss track', 'beef 22190 pop', 'musicals', 'soundtrack', 'screen 22191 rock', 'ballad', 'piano', 'teen pop', 'adult alternative', 'adult contemporary', 'folk rock 22192 country', 'rock', 'ballad 22193 rock', 'country', 'pop', 'pop-rock', 'piano', 'orchestral', 'adult contemporary', 'pop country', 'singer-songwriter', 'ballad 22194 pop', 'rock', 'electronica', 'electronic rock', 'pop-rock 22195 rap', 'r&b', 'pop', 'electro-swing', 'electro-pop', 'adult contemporary', 'easy listening', 'nu disco', 'hip-hop 22196 pop', 'rock', 'adult contemporary', 'soft rock', 'memes', 'mental health', 'ballad', 'adult alternative', 'alternative pop', 'alternative rock', 'pop-rock', 'alternative 22197 pop', 'rap', 'pop rap', 'abstract rap', 'cloud rap', 'trap', 'conscious hip-hop', 'west coast', 'producer 22198 rap 22199 rap', 'cloud rap', 'boom bap', 'edm', 'trap', 'east coast', 'electronic', 'dubstep 22200 rap', 'boom bap', 'alternative r&b', 'gangsta rap', 'alternative', 'intro', 'east coast', 'cloud rap', 'trap 22201 rock', 'rap', 'pop', 'britpop', 'uk 22202 country', 'rock', 'americana', 'folk', 'bluegrass', 'cover 22203 rap 22204 country', 'rock', 'pop-rock', 'feminism 22205 rap 22206 country', 'rock 22207 country 22208 pop', 'rap', 'dance 22209 pop', 'piano', 'canada 22210 rap', 'tv', 'electronic', 'comedy 22211 pop', 'indie pop', 'indie', 'electronic', 'edm', 'teen pop', 'soundtrack', 'dance', 'dance-pop 22212 pop', 'ballad', 'acoustic 22213 pop', 'canada 22214 rap', 'politics', 'hip-hop', 'lgbtq+ 22215 rock 22216 pop', 'rock', 'adult alternative', 'electronic rock', 'electro-pop', 'alternative', 'alternative pop', 'alternative rock', 'pop-rock', 'punk rock', 'pop-punk 22217 country', 'pop country 22218 r&b', 'pop', 'teen pop', 'dark pop', 'soul pop', 'piano', 'ballad', 'adult contemporary 22219 rap', 'producer', 'trap', 'canada 22220 country', 'rock 22221 rap 22222 country', 'pop country', 'ballad', 'singer-songwriter 22223 r&b', 'rap', 'dmv 22224 pop', 'electronic trap', 'trap', 'dance', 'memes', 'electronic 22225 r&b', 'adult contemporary', 'ballad 22226 pop', 'rock', 'charity 22227 rap', 'florida rap', 'east coast', 'dirty south', 'atlanta', 'gangsta rap', 'trap 22228 pop', 'rock', 'teen pop', 'pop-rock', 'ballad', 'adult contemporary', 'piano 22229 rap', 'hip-hop 22230 r&b', 'rap', 'hip-hop', 'east coast', 'dirty south 22231 pop', 'progressive house', 'electronic 22232 rock', 'southern rock', 'adult alternative', 'soul', 'blues rock', 'roots', 'blues 22233 pop', 'rap 22234 pop', 'r&b', 'rap', 'nederland', 'dmv', 'progressive house', 'electro house', 'dance-pop 22235 pop', 'r&b', 'rock', 'scotland', 'singer-songwriter', 'uk r&b', 'uk', 'adult alternative', 'adult contemporary', 'soul pop', 'soul', 'pop-rock 22236 country', 'rock', 'christian pop', 'christian', 'ballad 22237 rap 22238 pop', 'pop-rock 22239 pop', 'christian 22240 pop', 'easy listening', 'adult contemporary', 'canada', 'singer-songwriter 22241 country', 'rock', 'ballad 22242 rap', 'electronic', 'uk 22243 country', 'rock 22244 pop', 'r&b', 'rock', 'cloud rap 22245 country', 'rock 22246 rap', 'memphis 22247 rock', 'folk', 'folk rock', 'pop-rock 22248 rap', 'dancehall', 'trinidad & tobago 22249 pop', 'country', 'rock', 'power pop', 'singer-songwriter', 'pop country 22250 r&b', 'rap', 'trap 22251 rock', 'country', 'rap', 'honky tonk', 'southern rock 22252 rap', 'canada 22253 r&b', 'pop 22254 rap', 'west coast 22255 rap 22256 pop', 'rap', 'dance', 'dirty south', 'electro-hop', 'florida rap', 'memes', 'pop rap 22257 pop', 'edm', 'progressive house', 'electro house', 'electro-pop', 'ballad', 'uk', 'electronic 22258 country', 'r&b', 'rock 22259 country', 'easy listening', 'adult contemporary', 'singer-songwriter', 'ballad 22260 pop', 'traduction française 22261 country', 'pop country 22262 rock', 'pop-punk', 'pop-rock', 'alternative 22263 pop', 'folk pop', 'easy listening', 'adult contemporary', 'singer-songwriter', 'uk 22264 r&b', 'pop', 'nu disco', 'dmv', 'funk 22265 pop', 'boy band 22266 r&b', 'rap', 'east coast', 'dirty south', 'trinidad & tobago', 'hyphy 22267 r&b', 'pop', 'dance-pop', 'girl group', 'bubblegum pop', 'uk 22268 pop', 'k-solo', 'edm', 'electronic', 'south korea', 'k-pop (케이팝)', 'korean', 'genius korea', 'dance 22269 country', 'pop country 22270 country', 'rock', 'teen pop', 'bubblegum pop', 'pop country 22271 pop', 'teen pop 22272 r&b', 'rap', 'beef 22273 rock', 'pop', 'pop-punk', 'pop-rock', 'canada 22274 rap', 'country', 'rock', 'conscious hip-hop', 'hip-hop', 'country rap', 'race / ethnicity 22275 pop', 'rock', 'teen pop', 'pop-rock 22276 pop 22277 country', 'rock', 'ballad 22278 r&b', 'rap', 'dmv', 'east coast', 'new york 22279 rap', 'dirty south', 'trap 22280 pop 22281 rap 22282 pop', 'r&b', 'dance-pop', 'dance 22283 pop', 'nu disco', 'dance', 'electro house', 'dance-pop', 'synth-pop', 'uk', 'electronic 22284 pop', 'r&b', 'singer-songwriter', 'alternative r&b', 'soul', 'soul pop 22285 pop', 'rap', 'r&b', 'pop rap', 'memes 22286 r&b', 'rap', 'dmv', 'jamaica 22287 r&b', 'singer-songwriter 22288 rap 22289 pop', 'rock', 'pop-rock 22290 pop', 'dream pop', 'classical crossover', 'orchestral', 'baroque pop', 'alternative pop', 'alternative', 'soundtrack 22291 rap 22292 country', 'rock', 'pop country', 'reggae 22293 country', 'rock 22294 country', 'singer-songwriter', 'ballad 22295 pop 22296 pop', 'alternative pop', 'electro-pop', 'electronic', 'teen pop', 'new wave', 'dance', 'alternative dance', 'dance-pop', 'synth-pop 22297 r&b', 'pop 22298 pop', 'r&b', 'electronic 22299 country', 'ballad', 'pop country 22300 pop', 'rap', 'dance-pop', 'electro house', 'canada 22301 country', 'rock 22302 pop', 'country 22303 country 22304 rap', 'dirty south', 'atlanta', 'trap 22305 pop', 'electro-funk', 'alternative r&b', 'dance-pop', 'funk-pop', 'nu disco', 'funk', 'memes 22306 pop 22307 r&b 22308 country', 'rock 22309 pop', 'lgbtq+', 'teen pop', 'alternative pop', 'bubblegum pop', 'dance-pop 22310 pop', 'electro-pop', 'dance-pop', 'power pop 22311 rock 22312 pop', 'teen pop', 'adult contemporary', 'dance-pop 22313 rap', 'east coast', 'soundtrack 22314 rap 22315 pop', 'france', 'electronic', 'electro-pop', 'dance-pop', 'edm', 'dance 22316 r&b', 'pop', 'adult alternative', 'soul pop', 'soul', 'uk r&b', 'uk 22317 country', 'cover 22318 rap 22319 rock', 'country', 'singer-songwriter 22320 rap', 'trap 22321 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 22322 pop 22323 country', 'rock 22324 country', 'rock 22325 r&b', 'pop 22326 pop', 'country', 'pop-punk', 'teen pop', 'pop country', 'ballad 22327 pop', 'teen pop', 'electronic 22328 pop 22329 pop', 'rock', 'adult contemporary', 'adult alternative', 'pop-rock', 'alternative rock 22330 country', 'cover', 'the voice 22331 rock', 'pop 22332 pop 22333 rock', 'island music', 'easy listening', 'ballad', 'singer-songwriter', 'acoustic', 'folk', 'folk rock', 'adult alternative 22334 country', 'rock 22335 country', 'the voice', 'cover 22336 pop', 'country 22337 country 22338 pop', 'r&b', 'rap', 'trap', 'glitch hop', 'techno', 'electro-pop', 'reggaetón', 'dancehall', 'dance', 'electro', 'electronic 22339 pop', 'dance rock', 'teen pop', 'pop-rock 22340 rap', 'conscious hip-hop', 'politics', 'hardcore hip-hop', 'experimental hip-hop', 'industrial hip-hop', 'producer 22341 rap', 'rap rock', 'race / ethnicity', 'politics', 'experimental hip-hop', 'industrial hip-hop', 'hardcore hip-hop 22342 rap 22343 country', 'pop 22344 country', 'rock', 'beef', 'singer-songwriter', 'folk rock', 'ballad', 'adult alternative', 'blues rock', 'pop-rock 22345 pop', 'soundtrack', 'electro-pop', 'synth-pop 22346 pop', 'dubstep', 'dance-pop', 'edm 22347 rap', 'alternative r&b', 'experimental hip-hop', 'electronic', 'trap', 'producer 22348 pop 22349 rap', 'trap 22350 rap', 'battle rap 22351 country', 'the voice', 'cover 22352 country', 'rock 22353 pop', 'folktronica', 'scandipop', 'dance-pop', 'dance', 'scandinavia', 'sverige', 'electro house', 'adult alternative', 'adult contemporary 22354 r&b', 'rap', 'dmv 22355 country', 'rock 22356 country', 'rock', 'singer-songwriter', 'ballad 22357 rap', 'r&b 22358 r&b', 'rap 22359 rap 22360 pop', 'rap', 'r&b', 'soul pop', 'soul 22361 rap 22362 pop', 'alternative r&b', 'dark pop', 'art pop', 'new zealand', 'electro-pop', 'alternative pop 22363 country', 'pop country 22364 pop', 'electro house', 'progressive house', 'house', 'dubstep', 'edm', 'electronic 22365 rap 22366 rap', 'new york', 'east coast', 'trap 22367 r&b', 'pop', 'singer-songwriter 22368 rap', 'traduction française 22369 pop', 'progressive house', 'edm', 'electronic', 'dance 22370 rap 22371 rap', 'traduction française 22372 rap', 'west coast 22373 rap', 'new york', 'east coast', 'hip-hop', 'producer 22374 pop', 'rap 22375 rap', 'hardcore hip-hop', 'east coast', 'trap 22376 country', 'bluegrass', 'americana 22377 rap', 'hyphy', 'hip-hop', 'west coast 22378 pop', 'rock', 'pop-rock', 'alternative rock 22379 country', 'pop', 'singer-songwriter', 'pop country', 'pop-rock 22380 rock', 'hard rock', 'heavy metal', 'groove metal 22381 pop', 'pop-rock', 'electro-pop', 'power pop 22382 country', 'rock', 'singer-songwriter', 'folk 22383 country', 'rock', 'honky tonk', 'pop-rock', 'alternative rock', 'pop country', 'singer-songwriter 22384 rap', 'atlanta', 'trap', 'producer 22385 pop', 'pop-rock', 'ireland', 'power pop', 'teen pop', 'dance-pop', 'boy band', 'uk 22386 r&b', 'pop', 'dance', 'dance-pop 22387 pop', 'nu disco', 'singer-songwriter', 'teen pop', 'uk', 'electro-pop', 'synth-pop 22388 rap', 'trinidad & tobago', 'electro-hop', 'dmv 22389 rap', 'hyphy', 'hip-hop', 'west coast 22390 pop', 'musicals', 'soundtrack', 'teen pop', 'pop-rock', 'disney 22391 pop', 'salsa', 'latin music', 'en español 22392 country', 'rock 22393 pop', 'rock', 'pop-rock 22394 country', 'rock 22395 pop', 'electro-pop', 'dance-pop 22396 pop', 'rock', 'ska', 'pop-rock 22397 pop', 'teen pop', 'indie', 'orchestral', 'alternative rock', 'singer-songwriter', 'ballad', 'piano', 'indie rock', 'indie pop', 'folk rock', 'acoustic', 'folk 22398 country', 'rock', 'ballad 22399 pop', 'r&b', 'synth-pop', 'chill', 'canada 22400 rock', 'folk pop', 'folk rock', 'uk 22401 pop', 'traduction française 22402 pop', 'bubblegum pop', 'power pop', 'teen pop 22403 pop', 'dance-pop', 'alternative pop', 'electro-pop', 'teen pop', 'eurodance', 'electronic 22404 rock', 'country', 'pop country 22405 pop', 'rock', 'pop-rock', 'alternative rock 22406 pop', 'dance-pop 22407 rock', 'pop', 'synth-pop', 'ballad', 'uk', 'pop-rock', 'adult contemporary', 'adult alternative', 'alternative rock', 'alternative pop 22408 country', 'rock 22409 country', 'rock 22410 pop', 'adult contemporary', 'ballad 22411 pop 22412 pop', 'dominican republic', 'latin music', 'en español', 'bachata 22413 rap', 'r&b', 'pop 22414 r&b', 'pop', 'teen pop', 'uk', 'piano', 'ballad 22415 rap 22416 pop', 'dance-pop', 'bubblegum pop 22417 rap', 'hardcore hip-hop', 'hip-hop', 'rap rock 22418 rock', 'pop', 'album-oriented rock (aor)', 'alternative r&b', 'pop-rock', 'soul pop', 'soul 22419 pop', 'latin music', 'bachata', 'latin pop', 'en español 22420 rock', 'pop', 'pop-punk', 'pop-rock', 'canada 22421 r&b', 'rap', 'memphis', 'dmv 22422 country 22423 pop', 'edm', 'comedy', 'norge', 'memes', 'electronic', 'dance 22424 rock', 'soundtrack', 'alternative', 'alternative rock 22425 pop 22426 pop', 'traducción al español 22427 r&b', 'singer-songwriter', 'adult contemporary', 'easy listening', 'piano', 'soul', 'ballad 22428 rap', 'atlanta', 'dirty south', 'hip-hop', 'trap 22429 rap', 'trap 22430 pop', 'synth-pop', 'dance-pop', 'piano', 'ballad', 'teen pop', 'electronic 22431 rap', 'memes', 'producer', 'trap', 'memphis 22432 rap', 'atlanta', 'trap 22433 r&b', 'pop', 'singer-songwriter', 'en español', 'latin pop', 'bachata 22434 country', 'rock 22435 rap', 'producer', 'canada 22436 rap', 'canada 22437 country 22438 country', 'pop country 22439 rock', 'dance rock', 'post-punk', 'new wave', 'canada', 'indie', 'art rock', 'alternative dance', 'indie rock 22440 rap', 'deutschsprachiger rock', 'deutschsprachiger rap 22441 rock', 'pop 22442 rap', 'memphis 22443 r&b', 'pop 22444 rock 22445 pop', 'rock', 'alternative pop', 'alternative', 'alternative rock', 'pop-rock', 'soundtrack 22446 r&b', 'rap', 'dmv', 'west coast 22447 pop', 'electro house', 'dance 22448 pop', 'nederland', 'memes', 'house', 'electronic 22449 pop', 'pop-rock 22450 country 22451 pop', 'dance', 'trance 22452 rap', 'west coast 22453 rap', 'trap', 'canada 22454 rap', 'canada 22455 rap', 'canada 22456 rap', 'outro', 'producer', 'east coast', 'cloud rap', 'canada 22457 r&b', 'rap', 'canada 22458 rap', 'alternative r&b', 'canada 22459 rap', 'soul', 'canada', 'producer 22460 r&b', 'rap', 'canada 22461 rap', 'producer', 'glitch hop', 'trap', 'canada 22462 pop', 'teen pop', 'synth-pop', 'alternative r&b', 'dark pop', 'alternative', 'alternative pop', 'new zealand', 'adult alternative', 'electro-pop 22463 rap', 'outro', 'neo soul', 'boom bap', 'classical crossover', 'pop rap 22464 pop', 'electro-pop', 'dance', 'nu disco', 'synth-pop', 'singer-songwriter 22465 rap', 'trap 22466 pop', 'electronic', 'synth-pop', 'alternative r&b', 'soundtrack', 'alternative pop', 'alternative', 'new zealand', 'electro-pop 22467 pop', 'r&b 22468 r&b', 'pop', 'canada 22469 r&b', 'remix', 'dmv', 'alternative r&b 22470 country', 'pop country 22471 rap', 'detroit', 'hip-hop', 'rap rock 22472 pop', 'ballad 22473 pop', 'country', 'rap', 'anthem', 'comedy', 'parody', 'country rap 22474 rock', 'post-grunge', 'alternative rock', 'hard rock 22475 pop', 'soundtrack', 'screen', 'ballad', 'cover 22476 pop', 'electro house', 'electro-pop', 'electronic 22477 r&b', 'rap 22478 country', 'r&b', 'rock 22479 pop 22480 country', 'rock', 'lgbtq+ 22481 country', 'singer-songwriter 22482 rap', 'detroit', 'hip-hop', 'hardcore hip-hop', 'producer', 'electronic', 'memes 22483 r&b', 'pop', 'canada 22484 pop 22485 rock', 'pop', 'ballad', 'pop-rock', 'canada 22486 country', 'rock', 'cover', 'ballad', 'pop country 22487 pop', 'canada', 'electro-pop', 'lgbtq+', 'dance-pop', 'synth-pop 22488 country 22489 country', 'rock 22490 country', 'rock 22491 country', 'rock', 'ballad 22492 country', 'pop country 22493 rap 22494 r&b', 'pop', 'electro house', 'house', 'future house', 'electro', 'electronic', 'synth-pop', 'electro-pop 22495 r&b', 'pop', 'alternative r&b', 'canada 22496 pop', 'synth-pop', 'teen pop', 'ballad 22497 country', 'pop 22498 country', 'rock', 'hard rock', 'gothic rock', 'emo', 'pop country', 'dark pop', 'outlaw country 22499 rap 22500 pop', 'rap 22501 r&b', 'pop', 'dubstep', 'ballad 22502 pop', 'soft rock', 'ballad', 'easy listening', 'adult contemporary', 'teen pop', 'british rock', 'singer-songwriter', 'folk rock', 'folk', 'boy band', 'uk 22503 pop', 'glam rock', 'electro-pop', 'edm', 'electronic 22504 r&b', 'pop', 'singer-songwriter', 'canada 22505 rock', 'ballad', 'electronic rock', 'glam rock 22506 pop', 'easy listening', 'piano', 'acoustic', 'adult contemporary', 'ballad 22507 r&b', 'pop', 'singer-songwriter', 'canada 22508 pop 22509 pop', 'ballad 22510 country', 'rock', 'memorial', 'ballad 22511 country', 'rock', 'pop country 22512 country', 'teen pop', 'pop country', 'singer-songwriter 22513 pop', 'rap', 'hip-hop 22514 pop 22515 r&b', 'pop', 'canada 22516 rock', 'pop', 'adult alternative', 'adult contemporary', 'pop-rock', 'alternative rock', 'indie pop', 'indie rock 22517 country', 'singer-songwriter', 'honky tonk 22518 rock', 'pop', 'teen pop', 'singer-songwriter', 'pop-rock', 'boy band', 'uk 22519 rock', 'pop', 'teen pop', 'british rock', 'ireland', 'pop-rock', 'boy band', 'uk 22520 r&b', 'pop', 'canada 22521 rap', 'chicago rap', 'art pop', 'neo soul', 'chipmunk soul', 'pop rap', 'experimental hip-hop', 'producer 22522 pop', 'gaming', 'dance-pop', 'breakbeat', 'piano', 'uk', 'soul 22523 rock', 'pop', 'ballad', 'adult alternative', 'easy listening', 'teen pop', 'ireland', 'british rock', 'pop-rock', 'boy band', 'uk 22524 r&b', 'rap 22525 pop', 'cover', 'holiday', 'christmas 22526 r&b', 'pop', 'canada 22527 pop', 'ballad', 'musicals', 'pop-rock', "children's music", 'cover', 'soundtrack', 'disney 22528 rock', 'country', 'pop 22529 pop', 'musicals', 'ballad', "children's music", 'piano', 'memes', 'soundtrack', 'disney 22530 country', 'rock 22531 pop', 'synth-pop', 'dubstep', 'dance-pop', 'electro-pop 22532 pop', 'rock', 'alternative', 'alternative pop', 'pop-rock 22533 pop', 'christian', 'christmas', 'a cappella 22534 r&b', 'pop', 'canada 22535 country', 'pop', 'pop country', 'bluegrass', 'progressive house', 'scandipop', 'scandinavia', 'sverige', 'electro house', 'dance 22536 country', 'pop', 'rock', 'alternative country', 'ballad', 'lgbtq+', 'singer-songwriter', 'folk', 'adult alternative', 'adult contemporary', 'pop-rock 22537 rap', 'producer 22538 country 22539 pop', 'christmas', 'bubblegum pop', 'holiday 22540 pop', 'rap', 'conscious hip-hop', 'hip-hop 22541 r&b', 'rap 22542 rock', 'adult alternative', 'alternative', 'indie', 'alternative rock', 'psychedelic rock', 'british rock', 'uk', 'soundtrack', 'blues rock', 'indie rock 22543 r&b', 'rap', 'pop', 'trap', 'canada 22544 pop', 'dance-pop', 'electro-pop 22545 pop 22546 pop 22547 pop', 'r&b', 'adult contemporary', 'alternative r&b', 'adult alternative', 'soul pop', 'soul 22548 r&b', 'rap 22549 pop', 'rap', 'producer 22550 r&b', 'pop', 'trap 22551 pop 22552 rock', 'country', 'singer-songwriter', 'alternative country', 'alternative rock', 'outlaw country 22553 r&b', 'pop 22554 pop 22555 pop', 'r&b', 'rap 22556 r&b', 'rap', 'remix', 'west coast', 'east coast', 'trap 22557 r&b', 'pop', 'canada 22558 country', 'ballad', 'singer-songwriter 22559 pop', 'rap', 'edm', 'trap', 'soundtrack', 'memes', 'electronic 22560 pop', 'musicals', "children's music", 'soundtrack', 'disney 22561 pop', 'musicals', "children's music", 'soundtrack', 'disney 22562 pop', 'electro-pop', 'edm', 'dance-pop', 'dance 22563 pop', 'rock 22564 rock', 'country 22565 pop', 'brill building 22566 country', 'ballad', 'singer-songwriter', 'pop country 22567 r&b', 'pop', 'neo soul', 'funk-pop', 'funk', 'adult contemporary', 'soundtrack', 'soul pop 22568 country 22569 r&b', 'pop 22570 country', 'rock', 'singer-songwriter 22571 country', 'pop country 22572 country', 'rock', 'power pop', 'singer-songwriter', 'ballad', 'alternative country', 'pop country 22573 rap 22574 rap 22575 r&b', 'piano 22576 pop', 'colombia', 'new wave', 'pop-rock', 'ska 22577 rap 22578 country 22579 country 22580 pop', 'electronic', 'dance 22581 pop', 'dance', 'electronic 22582 country 22583 rock', 'christian pop', 'worship', 'australia', 'chill', 'christian 22584 r&b', 'rap', 'pop', 'teen pop 22585 rap', 'west coast 22586 pop', 'ballad', 'latin pop', 'en español', 'latin music', 'spanish music 22587 country', 'power pop', 'singer-songwriter', 'pop country 22588 r&b', 'dmv 22589 rock', 'pop', 'uk', 'pop-rock', 'alternative', 'alternative rock 22590 rap 22591 r&b', 'pop', 'rap', 'romanticism literature', 'en español', 'latin pop', 'bachata 22592 pop', 'country', 'alternative country', 'americana', 'lgbtq+', 'feminism', 'pop country 22593 rock', 'country', 'ballad', 'australia', 'pop country', 'cover 22594 country 22595 r&b 22596 pop', 'rock', 'soundtrack', 'adult alternative', 'alternative rock', 'pop-rock', 'alternative 22597 r&b 22598 pop', 'piano', 'singer-songwriter', 'ballad 22599 country', 'chill', 'pop country', 'singer-songwriter 22600 rap', 'pop', 'pop rap', 'post-dubstep', 'electro-pop', 'edm', 'dance-pop', 'eurotrance', 'electronic', 'soundtrack 22601 rock', 'country', 'singer-songwriter 22602 rap', 'atlanta', 'trap 22603 rap 22604 r&b', 'pop 22605 pop', 'rap', 'pop rap', 'funk-pop', 'teen pop 22606 pop', 'uk 22607 pop', 'alternative r&b', 'synth-pop', 'alternative', 'new zealand', 'art pop', 'electro-pop', 'adult alternative', 'chill', 'dark pop', 'alternative pop 22608 r&b', 'pop', 'singer-songwriter', 'electronic', 'uk 22609 rock', 'ireland 22610 rock', 'country', 'ballad', 'pop country', 'singer-songwriter 22611 pop', 'electro house', 'edm', 'dance', 'memes', 'electronic', 'satire', 'spoken word 22612 r&b', 'pop', 'alternative r&b', 'alternative pop', 'ballad', 'singer-songwriter 22613 pop', 'rap', 'folk', 'edm 22614 pop', 'dance-pop', 'adult alternative', 'alternative rock', 'alternative dance', 'electro-pop', 'indie pop', 'indie rock', 'neo soul 22615 rock', 'pop', 'teen pop', 'new jack swing', 'new wave', 'alternative rock', 'funk rock', 'pop-rock 22616 pop', 'indie pop', 'new wave', 'synth-pop 22617 pop', 'r&b', 'art pop', 'synth-pop', 'piano', 'alternative pop', 'pop-rock', 'uk', 'adult alternative', 'ballad 22618 pop', 'rock', 'singer-songwriter', 'folk rock', 'pop-rock 22619 rap', 'trap', 'producer 22620 rap', 'producer 22621 rap', 'pop', 'electro-pop', 'latin urban', 'puerto rico', 'latin pop', 'latin music', 'reggaetón', 'en español 22622 rock 22623 pop', 'musicals', "children's music", 'soundtrack', 'disney 22624 rap', 'canada', 'west coast 22625 country', 'pop country 22626 pop', 'rap', 'conscious hip-hop', 'hip-hop', 'producer 22627 country 22628 rap 22629 pop', 'dance-pop', 'edm', 'dance', 'electronic 22630 pop', 'rap 22631 rap 22632 pop', 'lgbtq+', 'trap', 'dance', 'future bass', 'deep house', 'electro-pop', 'synth-pop', 'uk', 'singer-songwriter 22633 pop', 'house', 'progressive house', 'teen pop', 'dance-pop', 'dance', 'electro-pop', 'edm', 'uk', 'electronic 22634 country', 'rock 22635 pop', 'soundtrack 22636 rock', 'pop', 'latin rock', 'ballad 22637 pop', 'electro-pop', 'electronic 22638 rock', 'psychedelic rock', 'psychedelic', 'alternative', 'adult alternative', 'alternative rock', 'blues rock 22639 rock', 'pop', 'teen pop', 'pop-rock 22640 rap 22641 country', 'r&b', 'rock', 'pop country', 'tropical house', 'chill', 'easy listening 22642 country', 'singer-songwriter', 'ballad 22643 pop', 'rock', 'teen pop', 'australia', 'pop-rock 22644 r&b', 'orchestral', 'piano', 'chamber music', 'singer-songwriter', 'gospel', 'soul pop', 'blue-eyed soul', 'ballad', 'soul', 'uk 22645 rock', 'indie rock', 'alternative rock 22646 r&b', 'pop', 'dance-pop', 'uk rap', 'alternative r&b', 'pop rap', 'soul', 'funk rock', 'funk', 'uk 22647 pop 22648 rap', 'atlanta', 'trap 22649 pop', 'nu disco', 'bubblegum pop', 'teen pop', 'singer-songwriter 22650 rock', 'reggae', 'synth-pop', 'indie', 'adult contemporary', 'alternative', 'britpop', 'uk', 'adult alternative', 'alternative pop', 'alternative rock', 'indie pop', 'indie rock 22651 rap 22652 pop', 'indie', 'adult contemporary', 'tropical house', 'easy listening', 'lgbtq+', 'feminism', 'teen pop', 'pop-rock', 'indie pop 22653 rock', 'pop', 'neo-psychedelia', 'art rock', 'art pop', 'alternative', 'trip-hop', 'dream pop', 'alternative pop 22654 rock', 'pop', 'ballad', 'british rock', 'teen pop', 'pop-rock', 'boy band', 'uk 22655 pop', 'rock', 'gaming', 'adult contemporary', 'pop-rock', 'soul 22656 rock', 'folktronica', 'folk', 'electronica', 'uk', 'alternative rock', 'alternative', 'ambient 22657 country', 'rock 22658 pop', 'norge', 'afrobeats 22659 rap', 'trap', 'memes 22660 rock', 'pop', 'electro-pop', 'dance-pop', 'edm', 'japanese', 'japan', 'j-pop', 'dance', 'dubstep', 'pop-rock', 'canada 22661 country', 'ballad 22662 country', 'rock', 'cover 22663 rock', 'pop', 'memes', 'pop-rock', 'reggae rock', 'teen pop', 'canada', 'reggae 22664 country', 'rock 22665 country 22666 rap 22667 rock', 'pop 22668 r&b', 'pop', 'adult contemporary', 'singer-songwriter', 'nu disco', 'soul', 'dance', 'remix 22669 pop', 'progressive house', 'dance-pop', 'edm', 'dance', 'electronic', 'adult contemporary', 'piano', 'uk', 'electronic rock 22670 pop', 'rap', 'dance-pop 22671 pop', 'reality tv', 'tv', 'screen', 'cover 22672 pop', 'latin music', 'cuba', 'spanish pop', 'spanish music', 'electro house', 'dance-pop', 'electro-pop', 'en español', 'latin pop 22673 country', 'rock 22674 rap', 'australia', 'electro-hop', 'trap 22675 country', 'rock 22676 country', 'pop', 'pop country 22677 pop 22678 r&b', 'pop 22679 r&b', 'pop', 'teen pop', 'synth-pop', 'electronic', 'dancehall', 'australia', 'ballad', 'electro-pop 22680 pop', 'screen', 'reality tv', 'tv', 'cover 22681 pop', 'indie pop 22682 pop 22683 country', 'pop country', 'singer-songwriter 22684 r&b', 'rap 22685 country', 'rock 22686 pop', 'rock', 'teen pop', 'australia', 'pop-rock 22687 rock', 'pop', 'folk pop', 'singer-songwriter', 'uk 22688 country 22689 r&b', 'rap', 'west coast', 'dmv 22690 country', 'rock', 'alternative country 22691 r&b', 'pop', 'electronic', 'dance', 'dance-pop', 'synth-pop 22692 pop', 'r&b', 'rap', 'east coast', 'ballad', 'trinidad & tobago', 'neo-psychedelia', 'neo soul', 'soul', 'alternative r&b 22693 pop', 'cover', 'tv 22694 pop', 'screen', 'cover', 'reality tv', 'tv 22695 country', 'pop country 22696 pop', 'singer-songwriter', 'uk 22697 pop', 'electro-pop 22698 pop', 'rock', 'australia', 'pop-rock 22699 rap', 'trap', 'canada', 'producer 22700 pop', 'scandipop', 'alternative pop', 'scandinavia', 'sverige', 'electro-pop', 'synth-pop 22701 pop', 'rock', 'chamber pop', 'adult alternative', 'alternative pop', 'alternative', 'pop-rock', 'psychedelic rock', 'alternative rock', 'blues rock 22702 pop', 'r&b 22703 rock', 'cover', 'folk pop 22704 country 22705 rock', 'country', 'easy listening', 'adult contemporary', 'ballad 22706 pop', 'teen pop', 'electro-pop', 'soundtrack', 'uk 22707 r&b', 'pop', 'orchestral', 'singer-songwriter', 'piano', 'adult alternative', 'adult contemporary', 'blue-eyed soul', 'soul', 'soul pop', 'ballad', 'pop-rock', 'uk 22708 rock', 'pop', 'synth rock', 'soft rock', 'chamber pop', 'psychedelic rock', 'alternative rock', 'alternative pop', 'alternative', 'dream pop 22709 country', 'pop country 22710 pop', 'pop rap', 'teen pop 22711 rap', 'west coast 22712 pop', 'dance', 'house', 'electronic 22713 country 22714 pop', 'dubstep', 'doo-wop', 'electro-pop 22715 pop', 'rap', 'electronic trap', 'trap', 'west coast', 'south korea', 'korean', 'genius korea 22716 r&b', 'rap', 'pop', 'uk 22717 country', 'rock 22718 pop', 'traduction française 22719 country 22720 rock 22721 pop', 'teen pop', 'adult contemporary', 'adult alternative', 'pop-rock 22722 pop', 'rock', 'australia', 'pop-rock 22723 pop', 'singer-songwriter', 'adult contemporary', 'alternative r&b', 'uk 22724 rap', 'west coast 22725 country', 'rock 22726 pop 22727 rap', 'east coast', 'new york', 'trinidad & tobago', 'gangsta rap', 'trap 22728 rap', 'dark trap', 'chicago blues', 'alternative', 'trap', 'emo trap', 'emo rap', 'emo 22729 rap', 'chicago rap', 'diss track', 'beef', 'chicago drill', 'drill 22730 country', 'pop country 22731 rock', 'deutschland 22732 rock', 'emo pop', 'pop-punk', 'pop-rock', 'alternative', 'alternative rock 22733 r&b', 'trap', 'neo soul 22734 rap', 'trap', 'electronic trap', 'electronic 22735 country', 'singer-songwriter 22736 pop 22737 rap', 'east coast', 'new york', 'trinidad & tobago', 'gangsta rap', 'trap 22738 rap', 'dark trap', 'chicago blues', 'alternative', 'trap', 'emo trap', 'emo rap', 'emo 22739 rap', 'chicago rap', 'diss track', 'beef', 'chicago drill', 'drill 22740 country', 'pop country 22741 rock', 'deutschland 22742 rock', 'emo pop', 'pop-punk', 'pop-rock', 'alternative', 'alternative rock 22743 r&b', 'trap', 'neo soul 22744 rap', 'trap', 'electronic trap', 'electronic 22745 country', 'singer-songwriter 22746 pop 22747 rap', 'east coast', 'new york', 'trinidad & tobago', 'gangsta rap', 'trap 22748 rap', 'dark trap', 'chicago blues', 'alternative', 'trap', 'emo trap', 'emo rap', 'emo 22749 rap', 'chicago rap', 'diss track', 'beef', 'chicago drill', 'drill 22750 country', 'pop country 22751 rock', 'deutschland 22752 rock', 'emo pop', 'pop-punk', 'pop-rock', 'alternative', 'alternative rock 22753 r&b', 'trap', 'neo soul 22754 rap', 'trap', 'electronic trap', 'electronic 22755 country', 'singer-songwriter 22756 pop 22757 rap', 'east coast', 'new york', 'trinidad & tobago', 'gangsta rap', 'trap 22758 rap', 'dark trap', 'chicago blues', 'alternative', 'trap', 'emo trap', 'emo rap', 'emo 22759 rap', 'chicago rap', 'diss track', 'beef', 'chicago drill', 'drill 22760 country', 'pop country 22761 rock', 'deutschland 22762 rock', 'emo pop', 'pop-punk', 'pop-rock', 'alternative', 'alternative rock 22763 r&b', 'trap', 'neo soul 22764 rap', 'trap', 'electronic trap', 'electronic 22765 country', 'singer-songwriter 22766 pop 22767 r&b', 'country', 'trap', 'alternative r&b', 'pop country 22768 rap', 'canada', 'producer 22769 pop', 'lgbtq+', 'australia 22770 pop', 'alternative', 'adult alternative', 'psychedelic', 'electronic', 'folk 22771 pop', 'rap', 'bubblegum pop', 'trinidad & tobago', 'feminism', 'teen pop', 'uk 22772 pop', 'alternative rock 22773 country', 'girl group', 'feminism', 'singer-songwriter', 'pop country 22774 pop', 'folk 22775 pop', 'tropical house', 'edm', 'synth-pop', 'teen pop', 'electro-pop', 'singer-songwriter', 'dance-pop 22776 rap', 'deutschsprachiger rap', 'deutschland 22777 rap', 'pop rap', 'trap 22778 r&b', 'pop', 'dance-pop', 'dance', 'electronic', 'electro-pop', 'uk 22779 rap', 'pop', 'pop rap', 'dance', 'dance-pop', 'trinidad & tobago', 'east coast', 'bounce', 'hip-hop', 'memes 22780 rap 22781 pop', 'rap 22782 country', 'rock', 'singer-songwriter 22783 rap', 'atlanta', 'trap 22784 rap', 'r&b', 'pop', 'piano', 'teen pop', 'singer-songwriter', 'ballad 22785 rap', 'hardcore hip-hop', 'hip-hop', 'electronic trap', 'house', 'electronic', 'memphis', 'trap', 'electro house', 'soundtrack 22786 rap', 'west coast', 'atlanta 22787 rock', 'pop', 'alternative pop', 'alternative', 'piano rock', 'alternative rock', 'singer-songwriter', 'adult contemporary', 'soul', 'blue-eyed soul', 'ballad', 'dark pop', 'adult alternative', 'lgbtq+', 'piano', 'ireland 22788 country 22789 pop', 'adult contemporary', 'dance', 'teen pop', 'singer-songwriter', 'dance-pop 22790 country', 'rock 22791 pop', 'singer-songwriter', 'adult alternative', 'pop-rock 22792 pop', 'jazz fusion', 'jazz', 'new age', 'orchestral', 'folk pop', 'acoustic', 'nederland', 'alternative pop', 'alternative 22793 pop', 'electro-pop', 'edm', 'remix', 'dance', 'electronic 22794 rap 22795 pop', 'rap', 'australia', 'producer', 'shadyxv 22796 pop', 'r&b', 'trap', 'feminism 22797 r&b', 'rap', 'singer-songwriter', 'funk 22798 country', 'rock', 'ballad', 'power pop', 'australia', 'singer-songwriter 22799 r&b', 'rap 22800 country', 'rock 22801 rap 22802 pop', 'lgbtq+ 22803 r&b', 'rap', 'trinidad & tobago', 'dmv 22804 r&b', 'rap', 'atlanta', 'dirty south', 'dmv 22805 country 22806 pop', 'dark pop', 'electro-pop', 'pop-rock 22807 pop', 'producer', 'dance-pop', 'dance', 'edm', 'electro-pop', 'electronic', 'uk 22808 country', 'rock 22809 pop', 'r&b', 'teen pop 22810 rock', 'pop-rock 22811 rap', 'trap', 'crunk 22812 pop', 'adult contemporary', 'ballad', 'singer-songwriter 22813 pop 22814 country', 'rock 22815 r&b', 'rap 22816 country', 'singer-songwriter 22817 pop', 'ireland 22818 pop', 'dmv', 'edm 22819 rap', 'west coast', 'hip-hop 22820 rap', 'trap', 'hip-hop', 'dirty south', 'atlanta', 'posse cut', 'west coast', 'canada', 'east coast 22821 country', 'rock 22822 rap 22823 country', 'pop country 22824 rap', 'pop rap', 'trap 22825 rap', 'atlanta', 'trap 22826 country 22827 country 22828 rock', 'uk', 'adult alternative', 'alternative rock', 'indie rock 22829 rock', 'pop', 'ireland', 'teen pop', 'alternative rock', 'pop-rock', 'british rock', 'boy band', 'uk 22830 country', 'ballad', 'singer-songwriter', 'gospel', 'pop country', 'power pop', 'christian 22831 country', 'rock 22832 country', 'rock 22833 pop', 'alternative pop', 'dark pop', 'new zealand', 'art pop', 'adult alternative', 'alternative dance', 'electro-pop', 'electronic', 'dance-pop', 'soundtrack 22834 r&b', 'pop', 'teen pop', 'alternative r&b', 'electro house', 'electronic 22835 rap', 'experimental hip-hop', 'hip-hop', 'remix', 'hardcore hip-hop', 'trap', 'memes 22836 country', 'rock', 'singer-songwriter 22837 pop', 'rap', 'comedy', 'screen 22838 country', 'ballad', 'alternative country', 'pop country', 'adult contemporary 22839 rock', 'pop', 'singer-songwriter', 'folk', 'adult contemporary', 'easy listening', 'bedroom pop', 'acoustic', 'ballad', 'soul', 'uk 22840 pop', 'edm', 'house', 'dance 22841 pop', 'r&b', 'ballad', 'canada', 'electro-pop', 'teen pop', 'synth-pop', 'synthwave 22842 country', 'singer-songwriter', 'ballad 22843 rap', 'pop 22844 rap 22845 r&b', 'rap 22846 pop', 'electronic', 'teen pop', 'singer-songwriter', 'electro-pop', 'synth-pop 22847 pop', 'rap', 'norge 22848 r&b', 'pop', 'rap', 'uk 22849 country 22850 rap', 'florida rap', 'new york', 'east coast', 'gangsta rap', 'trap 22851 pop', 'r&b', 'alternative r&b', 'trap 22852 country', 'rock 22853 r&b', 'pop', 'reggae 22854 pop', 'electro-pop', 'lgbtq+', 'teen pop', 'singer-songwriter', 'synth-pop 22855 rap 22856 pop', 'electronic', 'dance', 'uk 22857 rap', 'trap 22858 rock', 'country', 'singer-songwriter', 'power pop', 'pop country 22859 r&b', 'dmv 22860 pop', 'teen pop', 'doo-wop', 'bubblegum pop 22861 pop', 'dance 22862 rap', 'trap 22863 country', 'christian pop', 'christian', 'religion', 'singer-songwriter', 'feminism', 'pop country 22864 pop', 'adult contemporary', 'electronic', 'singer-songwriter', 'teen pop', 'synth-pop', 'electro-pop 22865 pop', 'rock', 'adult contemporary', 'folk', 'folk rock', 'adult alternative', 'pop-rock', 'alternative pop', 'alternative', 'alternative rock 22866 rap', 'posse cut', 'memes', 'trinidad & tobago', 'dmv', 'canada', 'east coast', 'trap 22867 rock', 'pop', 'adult contemporary', 'electronic', 'nu disco', 'synth-pop', 'funk', 'singer-songwriter', 'pop-rock', 'funk-pop 22868 rock 22869 r&b', 'pop', 'soul', 'adult contemporary', 'adult alternative', 'blue-eyed soul', 'soul pop 22870 pop', 'singer-songwriter', 'downtempo', 'alternative pop', 'synth-pop', 'ballad 22871 pop 22872 country', 'pop country 22873 r&b', 'pop', 'ballad 22874 rock', 'pop', 'teen pop', 'ireland', 'alternative rock', 'pop-rock', 'british rock', 'boy band', 'uk 22875 pop', 'alternative pop', 'alternative', 'singer-songwriter', 'canada 22876 r&b', 'country', 'easy listening', 'adult contemporary', 'pop country', 'ballad', 'singer-songwriter 22877 country 22878 pop', 'rock', 'nu disco', 'teen pop', 'adult contemporary', 'pop-rock', 'adult alternative', 'electro-pop', 'alternative', 'alternative pop', 'alternative rock 22879 pop', 'r&b', 'rap', 'uk', 'screen 22880 pop', 'adult alternative', 'adult contemporary', 'easy listening', 'acoustic', 'soft rock', 'ballad', 'ireland', 'teen pop', 'british rock', 'boy band', 'uk 22881 rock', 'pop', 'teen pop', 'ireland', 'pop-rock', 'british rock', 'boy band', 'uk 22882 country', 'pop country', 'singer-songwriter 22883 r&b', 'rap 22884 pop', 'christian', 'a cappella', 'cover', 'christmas 22885 pop', 'boy band', 'soft rock', 'pop-rock', 'alternative rock', 'ireland', 'ballad', 'teen pop', 'british rock', 'uk 22886 r&b', 'pop', 'rap', 'east coast', 'alternative r&b', 'alternative', 'alternative pop', 'trinidad & tobago', 'soul pop 22887 rap', 'trap', 'memes 22888 pop', 'retro', 'holiday', 'jazz', 'christmas 22889 rock', 'pop', 'alternative pop', 'alternative', 'piano rock', 'alternative rock', 'singer-songwriter', 'adult contemporary', 'soul', 'blue-eyed soul', 'ballad', 'dark pop', 'adult alternative', 'lgbtq+', 'piano', 'ireland 22890 r&b', 'rap', 'memphis 22891 rock', 'pop', 'alternative rock', 'pop-rock', 'ireland', 'teen pop', 'british rock', 'boy band', 'uk 22892 pop 22893 pop', 'r&b', 'dance', 'trap 22894 r&b', 'pop', 'bubblegum pop', 'teen pop', 'singer-songwriter', 'holiday', 'christmas 22895 pop', 'rock', 'adult contemporary', 'adult alternative', 'soundtrack', 'folk rock', 'folk', 'pop-rock 22896 country 22897 rock', 'country', 'alternative r&b', 'singer-songwriter 22898 pop', 'electro-pop', 'electronic', 'synth-pop 22899 pop', 'rap', 'dance-pop', 'pop rap', 'electro house', 'teen pop 22900 pop', 'uk 22901 pop 22902 pop', 'rock', 'r&b', 'cover', 'dance 22903 rock 22904 country 22905 country 22906 rock 22907 country 22908 rap', 'chipmunk soul', 'boom bap', 'jazz rap 22909 rap', 'gangsta rap', 'new york drill', 'new york', 'drill', 'east coast 22910 r&b', 'pop', 'cover', 'britpop', 'uk r&b', 'uk', 'holiday', 'christmas 22911 rock', 'folk rock 22912 r&b', 'rap', 'trap', 'conscious hip-hop 22913 rap', 'battle rap 22914 pop', 'teen pop', 'electronic rock', 'uk 22915 rock', 'pop', 'the voice 22916 pop', 'country', 'the voice 22917 r&b', 'pop', 'rap', 'east coast', 'trinidad & tobago', 'trap 22918 pop', 'the voice 22919 pop', 'uk 22920 pop', 'the voice 22921 rock', 'pop', 'soundtrack 22922 r&b', 'pop', 'rap', 'east coast', 'trap', 'trinidad & tobago', 'dark pop', 'alternative r&b 22923 rap', 'neo soul', 'conscious hip-hop 22924 rock', 'country', 'ballad', 'singer-songwriter 22925 r&b 22926 rap', 'r&b', 'dominican republic', 'latin music', 'west coast 22927 pop 22928 pop', 'r&b 22929 pop', 'doo-wop 22930 pop', 'r&b', 'memorial', 'soul', 'producer 22931 rap', 'trinidad & tobago', 'atlanta', 'trap 22932 r&b', 'rock', 'country', 'country rap', 'singer-songwriter', 'pop country 22933 country', 'rock', 'adult contemporary', 'ballad', 'piano 22934 country 22935 country 22936 country 22937 rap', 'west coast 22938 pop', 'art pop', 'trip-hop', 'ballad', 'electro-pop', 'australia 22939 rap', 'r&b', 'pop', 'electro-pop', 'dmv', 'west coast 22940 pop', 'adult contemporary', 'orchestral', 'piano', 'ballad', 'uk', 'soundtrack 22941 pop', 'electro-pop', 'pop-rock 22942 pop 22943 rock', 'progressive metal', 'cover', 'metalcore 22944 r&b', 'rap 22945 rap', 'r&b', 'dmv', 'west coast', 'memes 22946 rap', 'uk 22947 rock', 'pop', 'teen pop', 'easy listening', 'adult alternative', 'adult contemporary', 'pop-rock 22948 pop', 'teen pop', 'bubblegum pop 22949 country', 'singer-songwriter', 'easy listening', 'adult contemporary 22950 rock', 'pop', 'dance-pop', 'surf rock', 'electro-pop', 'pop-rock 22951 rap', 'r&b', 'soundtrack', 'civil rights 22952 country', 'ballad 22953 r&b', 'rap 22954 r&b', 'rap', 'pop', 'folk pop', 'adult contemporary', 'soul', 'pop country', 'contemporary folk', 'folk rock', 'acoustic', 'folk', 'soul pop 22955 rap', 'electronic', 'bounce', 'east coast', 'deep house', 'dance', 'hip-hop', 'trinidad & tobago', 'canada', 'electro-hop', 'house', 'producer 22956 rap', 'pop', 'edm', 'electronic', 'dance-pop', 'soundtrack', 'girl group 22957 r&b', 'rap', 'pop rap', 'trap 22958 pop', 'r&b', 'electro-pop 22959 pop', 'rock', 'alternative dance', 'disney', 'electro-pop', 'pop-rock 22960 r&b 22961 pop', 'rock', 'dance rock', 'adult alternative', 'alternative dance', 'synth rock', 'indie rock', 'alternative pop', 'alternative', 'alternative rock', 'pop-rock', 'new wave', 'synth-pop', 'dance 22962 rock', 'pop', 'soft rock', 'chill', 'folk rock', 'uk', 'folk 22963 pop', 'singer-songwriter 22964 pop', 'scandipop', 'scandinavia', 'sverige', 'electro-pop', 'synth-pop 22965 r&b 22966 rap', 'chicago rap', 'canada', 'trap 22967 pop', 'blue-eyed soul', 'lgbtq+', 'easy listening', 'adult contemporary', 'acoustic', 'piano', 'dark pop', 'ballad', 'soul', 'singer-songwriter', 'uk 22968 pop', 'alternative pop', 'alternative', 'singer-songwriter', 'canada 22969 r&b', 'rap', 'dmv', 'west coast 22970 pop 22971 country', 'pop country', 'ballad 22972 rap', 'producer', 'trap', 'canada 22973 rock', 'country', 'soundtrack 22974 pop', 'teen pop', 'easy listening', 'piano', 'adult contemporary', 'ballad', 'uk 22975 rap', 'trap', 'canada 22976 rap', 'canada 22977 rap', 'trap', 'canada 22978 rap', 'trap', 'canada 22979 r&b', 'experimental', 'soundtrack 22980 pop', 'bubblegum pop', 'teen pop', 'pop-rock 22981 pop', 'cover', 'soundtrack 22982 r&b', 'soundtrack 22983 pop', 'rock', 'art pop', 'art rock', 'singer-songwriter', 'pop-rock', 'adult alternative', 'alternative pop', 'alternative', 'alternative rock', 'uk 22984 pop', 'adult contemporary', 'dance', 'singer-songwriter', 'electro-pop', 'synth-pop', 'dance-pop 22985 rap', 'trap', 'canada 22986 rap', 'trap', 'canada 22987 rap', 'alternative r&b', 'producer', 'trap', 'canada 22988 r&b', 'rap', 'canada 22989 rap', 'trap', 'canada 22990 rap', 'aussie hip-hop', 'soundtrack', 'australia 22991 pop', 'electro house', 'electronic 22992 rock 22993 rap', 'r&b', 'soundtrack', 'tv 22994 rap 22995 pop', 'adult contemporary', 'new wave', 'ballad', 'synth-pop', 'singer-songwriter 22996 pop', 'r&b', 'dance-pop', 'singer-songwriter', 'soul pop 22997 country', 'outlaw country', 'honky tonk', 'pop country 22998 country 22999 rap', 'neo soul', 'ballad', 'memorial', 'soul rap', 'piano 23000 rap 23001 rap', 'trap 23002 rap', 'uk', 'drill', 'trap', 'producer 23003 r&b', 'tv 23004 pop', 'electro-pop', 'teen pop', 'electronic', 'synth-pop', 'dance-pop', 'dance', 'canada 23005 pop', 'adult contemporary', 'electronic', 'electro-pop', 'singer-songwriter', 'new wave', 'synth-pop 23006 country 23007 r&b', 'pop', 'alternative r&b', 'electronic 23008 country', 'singer-songwriter', 'ballad 23009 rap', 'east coast', 'trap 23010 pop', 'r&b', 'rock', 'rap', 'dance 23011 rock', 'indie', 'folk rock', 'adult alternative', 'alternative rock', 'indie rock', 'uk 23012 pop', 'r&b', 'nu disco', 'dance 23013 country 23014 rap', 'pop 23015 pop', 'country', 'rock', 'alternative pop', 'indie pop', 'christian 23016 country', 'folk', 'feminism', 'ballad', 'alternative country 23017 country', 'ballad', 'chill', 'adult contemporary', 'easy listening 23018 pop', 'country', 'pop country', 'power pop', 'singer-songwriter 23019 rap 23020 rap', 'hardcore hip-hop', 'conscious hip-hop', 'p-funk', 'producer', 'funk', 'g-funk', 'west coast 23021 rap', 'hip-hop', 'protest songs', 'hardcore hip-hop', 'boom bap', 'conscious hip-hop', 'politics', 'producer', 'west coast 23022 rap', 'protest songs', 'jazz rap', 'politics', 'producer', 'conscious hip-hop', 'west coast 23023 rock', 'rap', 'pop', 'electronic rock', 'electro-industrial', 'industrial hip-hop', 'industrial rock', 'industrial', 'alternative rock', 'alternative pop', 'pop-rock', 'alternative', 'electronic', 'electro-pop', 'dubstep 23024 rap', 'intro', 'experimental hip-hop', 'psychedelic soul', 'politics', 'neo soul', 'soul', 'gangsta rap', 'conscious hip-hop', 'producer', 'funk', 'g-funk', 'west coast 23025 rap', 'politics', 'jazz rap', 'neo soul', 'experimental hip-hop', 'producer', 'conscious hip-hop', 'west coast 23026 pop 23027 pop', 'spanish pop', 'spanish urban', 'spanish music', 'puerto rico', 'latin urban', 'reggaetón', 'en español', 'latin music', 'latin pop 23028 r&b', 'pop', 'rap', 'aussie hip-hop', 'australia', 'soul pop', 'doo-wop 23029 rap', 'tradução em português 23030 rock', 'alternative metal', 'post-grunge', 'hard rock', 'alternative rock 23031 rap 23032 country', 'pop country', 'singer-songwriter 23033 pop', 'edm', 'french pop', 'france', 'electro house', 'electro', 'electro-pop', 'trap', 'electronic', 'remix', 'house 23034 rock', 'country', 'blues rock', 'blues', 'singer-songwriter', 'outlaw country 23035 pop', 'moombahton', 'electronic trap', 'trap', 'edm', 'electro-pop', 'electronic 23036 r&b', 'rap', 'dmv 23037 r&b', 'rap', 'dirty south', 'atlanta', 'soul 23038 pop', 'country', 'pop country', 'indie pop', 'indie', 'singer-songwriter 23039 rap', 'atlanta', 'producer', 'trap 23040 rap', 'filmographie', 'hip-hop 23041 rock', 'pop', 'electronic rock', 'electronic', 'indie electronic', 'indie pop', 'indie rock', 'pop-rock', 'alternative', 'alternative pop', 'alternative rock', 'electro-pop 23042 pop', 'country', 'synth-pop', 'pop country 23043 pop 23044 country 23045 pop', 'traduction française 23046 rap', 'dirty south', 'freestyle', 'trap', 'memes 23047 pop', 'anthem', 'ballad 23048 r&b', 'pop 23049 country', 'pop country', 'dark pop', 'ballad 23050 rap 23051 pop', 'rock', 'adult contemporary', 'adult alternative', 'alternative rock', 'pop-rock 23052 rock', 'pop', 'alternative', 'alternative rock', 'pop-rock 23053 rock', 'pop', 'adult contemporary', 'ballad', 'pop-rock 23054 rap', 'atlanta', 'trap 23055 pop', 'teen pop', 'jamaica', 'tropical house 23056 rap', 'pop rap', 'atlanta 23057 r&b', 'pop 23058 rap', 'pop', 'hip-hop', 'pop-rock', 'rap rock', 'alternative pop', 'alternative', 'alternative rock 23059 rap', 'memes', 'dirty south', 'trap 23060 country', 'rock', 'memorial 23061 country', 'pop country', 'singer-songwriter 23062 rap', 'pop', 'electro-pop 23063 pop', 'r&b', 'alternative r&b', 'electronic', 'funk', 'funk rock', 'soul', 'soul pop 23064 r&b', 'en español', 'românia', 'australia', 'scandinavia', 'dancehall', 'reggae', 'jamaica 23065 r&b 23066 pop', 'rap', 'electro-hop', 'pop rap', 'trinidad & tobago', 'synth-pop', 'dance-pop', 'dance', 'electronic', 'dubstep 23067 country', 'ballad', 'pop country', 'singer-songwriter 23068 r&b', 'rap', 'dirty south', 'dmv', 'trap 23069 pop', 'rap', 'r&b', 'cuba', 'dmv 23070 pop', 'adult contemporary', 'easy listening', 'singer-songwriter', 'ballad', 'acoustic', 'folk', 'uk 23071 pop 23072 country 23073 pop', 'rock', 'the voice 23074 pop', 'uk', 'soundtrack 23075 pop', 'house', 'electronic 23076 rock', 'pop', 'the voice 23077 pop', 'r&b', 'canada', 'synth-pop', 'synthwave', 'dark pop', 'singer-songwriter', 'trap', 'alternative r&b 23078 r&b', 'rap', 'boom bap', 'neo soul', 'alternative r&b', 'east coast', 'neo-psychedelia 23079 pop', 'r&b', 'rap', 'boom bap', 'alternative r&b', 'west coast', 'east coast 23080 pop', 'alternative pop', 'alternative', 'alternative rock', 'canada', 'pop-rock 23081 country', 'adult contemporary', 'easy listening', 'ballad 23082 country 23083 country', 'pop country', 'singer-songwriter 23084 r&b', 'dmv 23085 country 23086 r&b', 'rap 23087 rap', 'soundtrack 23088 pop 23089 pop', 'r&b', 'country', 'alternative r&b', 'singer-songwriter', 'pop country 23090 pop', 'r&b', 'rap', 'trap', 'boom bap', 'neo soul', 'alternative', 'east coast 23091 rap 23092 rock', 'country', 'pop country 23093 pop', 'r&b', 'alternative pop', 'funk-pop', 'canada', 'synth-pop', 'singer-songwriter', 'alternative r&b', 'nu disco', 'funk 23094 rap 23095 country', 'pop country', 'christian', 'australia 23096 pop 23097 rap', 'pop rap 23098 country', 'pop country', 'singer-songwriter 23099 rock', 'pop', 'electro-pop', 'eurodance', 'dark pop', 'house', 'pop-rock', 'glam rock', 'electronic 23100 pop', 'easy listening', 'adult contemporary 23101 pop', 'synth-pop', 'dance-pop 23102 pop', 'r&b', 'rap 23103 rap', 'pop', 'electro-pop 23104 pop', 'r&b', 'rap', 'soul pop', 'remix', 'soul 23105 pop', 'rap 23106 r&b', 'rap', 'trinidad & tobago', 'dmv 23107 pop', 'r&b 23108 country 23109 pop', 'soul pop', 'singer-songwriter', 'uk 23110 rap', 'atlanta', 'trap 23111 rap', 'trap 23112 pop', 'synth-pop', 'synthwave', 'electro house', 'lgbtq+', 'teen pop', 'electronic rock', 'pop-rock 23113 rap', 'gangsta rap', 'beef', 'trap', 'canada', 'east coast 23114 r&b', 'rap', 'west coast', 'dmv', 'new jack swing 23115 pop', 'r&b', 'rap', 'west coast', 'dmv 23116 rap', 'producer 23117 r&b', 'rap', 'pop rap', 'memes', 'trap 23118 rock', 'christian 23119 country 23120 rap', 'trap', 'canada 23121 rap', 'atlanta', 'trap 23122 r&b', 'pop', 'adult contemporary', 'doo-wop', 'ballad 23123 rock', 'alternative rock', 'blues rock', 'pop-rock 23124 pop', 'country', 'pop country 23125 rap', 'soundtrack 23126 pop', 'r&b 23127 country', 'ballad', 'girl group', 'pop country', 'feminism', 'singer-songwriter 23128 country', 'orchestral', 'piano', 'dark pop', 'alternative country', 'easy listening', 'pop country', 'ballad', 'singer-songwriter 23129 pop', 'rock', 'australia', 'pop-rock 23130 pop', 'deep house', 'electronic', 'uk 23131 rap', 'canada', 'atlanta', 'trap 23132 country', 'ballad', 'alternative country', 'pop country', 'singer-songwriter 23133 r&b', 'rap', 'pop', 'pop rap', 'alternative', 'hip-hop', 'dancehall', 'reggae 23134 rap', 'atlanta', 'trap 23135 country', 'pop country 23136 pop', 'r&b', 'singer-songwriter', 'electronic', 'electro-pop 23137 pop', 'teen pop 23138 r&b', 'pop', 'alternative dance', 'dance-pop', 'dancehall 23139 rock', 'pop', 'alternative pop', 'teen pop', 'ireland', 'alternative rock', 'british rock', 'pop-rock', 'boy band', 'uk 23140 rap', 'canada', 'producer', 'trap', 'beef 23141 pop', 'soundtrack', "children's music", 'disney 23142 pop', 'house', 'uk', 'electronic 23143 rap', 'pop', 'r&b', 'pop rap', 'memes', 'canada 23144 rap', 'canada', 'beef 23145 rap', 'türkçe çeviri 23146 rap 23147 country', 'singer-songwriter', 'pop country 23148 pop', 'r&b', 'pop rap', 'canada', 'teen pop 23149 pop', 'piano', "children's music", 'disney', 'ballad', 'soundtrack', 'tv 23150 r&b', 'rap', 'trap 23151 pop', 'ambient', 'downtempo', 'electronica', 'adult alternative', 'trip-hop', 'neo-psychedelia', 'psychedelic', 'dream pop', 'alternative pop', 'alternative 23152 pop', 'teen pop', 'feminism', 'dance-pop', 'electro-pop', 'soundtrack 23153 country', 'singer-songwriter', 'pop country', 'ballad 23154 country', 'ballad', 'pop country 23155 pop', 'teen pop', 'dance-pop', 'girl group', 'uk 23156 rap', 'hip-hop', 'cloud rap 23157 rap', 'eighties', 'hardcore hip-hop', 'west coast', 'gangsta rap 23158 rap', 'memes 23159 rap', 'eighties', 'hardcore hip-hop', 'west coast', 'gangsta rap 23160 r&b', 'rap 23161 pop', 'rock', 'australia', 'pop-rock 23162 rock', 'country', 'feminism', 'pop country', 'singer-songwriter 23163 pop', 'singer-songwriter 23164 pop', 'rap', 'hip-hop', 'alternative pop', 'alternative', 'funk 23165 r&b', 'dmv', 'alternative r&b 23166 r&b 23167 rock', 'pop', 'alternative pop', 'alternative', 'adult alternative', 'alternative rock', 'synth rock', 'synth-pop', 'pop-rock 23168 country', 'singer-songwriter', 'alternative country 23169 pop', 'electro house', 'canada', 'tropical house', 'electro-pop', 'electronic 23170 r&b', 'türkçe çeviri', 'türkiye', 'turkey 23171 pop', 'r&b', 'singer-songwriter 23172 pop', 'r&b', 'alternative r&b 23173 pop', 'r&b', 'singer-songwriter 23174 pop', 'rock', 'alternative dance', 'trip-hop', 'pop-rock', 'alternative', 'alternative rock 23175 pop', 'r&b', 'alternative r&b', 'alternative pop 23176 r&b', 'old style translation', 'em português', 'tradução em português', 'brasil 23177 r&b', 'turkey', 'türkçe çeviri', 'türkiye 23178 pop', 'rock', 'australia', 'pop-rock 23179 pop', 'alternative', 'alternative pop 23180 pop', 'r&b', 'synth-pop', 'alternative r&b', 'nu disco', 'singer-songwriter 23181 r&b', 'rap', 'neo-psychedelia', 'alternative r&b', 'psychedelic', 'cloud rap', 'trap 23182 rap 23183 rap', 'pop', 'pop rap', 'memes', 'cloud rap', 'trap 23184 pop', 'rap', 'electro house', 'electro-pop', 'colombia', 'latin pop', 'latin urban', 'latin music', 'reggaetón', 'en español 23185 pop', 'pop-punk', 'synth-pop', 'electro-pop', 'teen pop 23186 rap', 'canada 23187 r&b 23188 country', 'pop 23189 rap', 'piano', 'soundtrack 23190 pop', 'house', 'electronic', 'uk 23191 pop', 'dance-pop', 'dance', 'electro', 'electro-pop', 'tropical house', 'electronic 23192 pop', 'teen pop', 'electro-pop 23193 rap', 'pop rap', 'trap 23194 pop', 'teen pop', 'uk', 'nu disco', 'soundtrack 23195 rap', 'atlanta', 'trap', 'canada 23196 r&b', 'rock', 'pop', 'soft rock', 'adult contemporary', 'easy listening', 'ballad', 'ireland', 'british rock', 'uk r&b', 'teen pop', 'pop-rock', 'boy band', 'uk 23197 r&b', 'rap', 'east coast', 'trap 23198 rap', 'alternative r&b', 'trap', 'atlanta', 'canada 23199 rap', 'comedy 23200 rap', 'atlanta', 'canada', 'trap 23201 rap', 'atlanta', 'canada', 'trap 23202 pop', 'brass band', 'electro-pop', 'feminism', 'teen pop', 'pop-rock', 'marvel 23203 rap', 'atlanta', 'trap', 'canada 23204 rap', 'canada', 'atlanta', 'trap 23205 rap', 'hip-hop', 'canada 23206 rap', 'canada', 'atlanta', 'trap 23207 pop', 'drum & bass', 'electronic 23208 country', 'adult contemporary', 'easy listening', 'singer-songwriter', 'ballad', 'pop-rock 23209 pop', 'tech', 'electro-pop', 'electro', 'dance', 'electronic 23210 r&b', 'rap', 'pop 23211 pop', 'ballad', 'soul', 'australia 23212 pop', 'soundtrack 23213 rap', 'trap', 'canada', 'atlanta 23214 rap', 'atlanta', 'producer', 'canada 23215 r&b', 'dark pop', 'soul pop', 'soul', 'trap', 'alternative r&b 23216 r&b', 'rap', 'trap 23217 rap', 'canada', 'atlanta', 'trap 23218 pop', 'uk 23219 rap 23220 r&b', 'country', 'alternative country', 'alternative r&b', 'singer-songwriter', 'pop country 23221 country', 'honky tonk', 'ballad', 'lgbtq+ 23222 country', 'easy listening', 'ballad', 'pop country 23223 country 23224 pop', 'rock', 'funk rock', 'soundtrack', 'alternative pop', 'alternative rock', 'uk', 'alternative dance', 'pop-rock', 'new wave 23225 r&b', 'pop', 'adult contemporary', 'ballad', 'alternative r&b', 'ireland', 'uk r&b', 'teen pop', 'boy band', 'uk 23226 pop', 'dance-pop', 'nu disco', 'funk', 'pop-rock 23227 r&b', 'alternative r&b', 'trap', 'canada 23228 pop', 'electro-pop', 'electronic', 'dance', 'dance-pop', 'future bass', 'traducción al español 23229 pop', 'ireland', 'boy band', 'uk 23230 r&b', 'pop', 'a cappella 23231 pop', 'adult contemporary', 'ballad', 'piano', 'soul', 'uk 23232 pop', 'edm', 'canada', 'tropical house', 'electro-pop', 'electronic 23233 pop', 'rock', 'pop-rock 23234 country 23235 pop', 'ballad', 'synth-pop 23236 country', 'indie pop', 'indie', 'pop country', 'bubblegum pop', 'singer-songwriter 23237 country', 'pop country 23238 r&b', 'soul', 'trap 23239 r&b', 'pop', 'nu disco', 'funk', 'dance-pop 23240 country', 'blues', 'soul', 'blues rock', 'cover', 'ballad', 'honky tonk', 'alternative country', 'americana', 'bluegrass 23241 r&b', 'pop', 'trap', 'canada', 'electro-pop', 'electronic 23242 pop', 'country', 'electronica', 'electro-pop', 'electronic', 'synth-pop', 'pop country', 'singer-songwriter 23243 country 23244 country 23245 rock', 'pop', 'pop-rock', 'british rock', 'uk', 'adult alternative', 'nu disco', 'funk', 'dance-pop 23246 rap 23247 rock', 'pop', 'pop-rock', 'ireland', 'alternative rock', 'teen pop', 'british rock', 'boy band', 'uk 23248 country', 'bluegrass', 'singer-songwriter 23249 pop', 'screen 23250 rap', 'experimental', 'dance', 'trap', 'alternative 23251 pop', 'power pop 23252 pop', 'rap', 'pop rap', 'memes 23253 pop', 'pop-rock', 'ballad', 'jazz fusion', 'acoustic', 'adult contemporary', 'easy listening', 'canada 23254 pop', 'christian', 'screen 23255 pop', 'canada 23256 pop', 'canada 23257 pop', 'canada 23258 rap', 'pop', 'canada 23259 pop', 'electronic', 'dance-pop', 'dance', 'canada 23260 rap', 'pop', 'trap', 'canada 23261 pop', 'ballad', 'canada 23262 pop', 'electronic', 'dance-pop', 'dance', 'canada 23263 pop', 'electronic', 'dance', 'dance-pop', 'canada 23264 rock', 'pop', 'orchestral', 'soft rock', 'easy listening', 'adult contemporary', 'piano', 'pop-rock', 'ireland', 'alternative rock', 'british rock', 'ballad', 'boy band', 'uk 23265 rock', 'pop', 'teen pop', 'pop-rock', 'ballad', 'ireland', 'british rock', 'boy band', 'uk 23266 pop', 'rap', 'canada 23267 pop', 'electronic', 'dance-pop', 'dance', 'canada 23268 rock', 'pop', 'soft rock', 'easy listening', 'bedroom pop', 'adult contemporary', 'ballad', 'ireland', 'alternative rock', 'pop-rock', 'acoustic', 'teen pop', 'british rock', 'singer-songwriter', 'boy band', 'uk 23269 rock', 'pop', 'alternative pop', 'ireland', 'alternative rock', 'pop-rock', 'teen pop', 'british rock', 'singer-songwriter', 'boy band', 'uk 23270 pop 23271 r&b', 'pop', 'canada 23272 rock', 'pop', 'teen pop', 'pop-rock', 'ireland', 'alternative rock', 'british rock', 'boy band', 'uk 23273 pop', 'singer-songwriter', 'piano', 'ballad', 'soul', 'uk 23274 pop', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'ballad', 'uk 23275 r&b', 'pop', 'funk-pop', 'singer-songwriter', 'synth-pop', 'alternative r&b', 'alternative pop', 'adult alternative', 'adult contemporary', 'pop-rock', 'uk 23276 pop', 'singer-songwriter', 'ballad', 'piano', 'soul', 'uk 23277 country', 'ballad 23278 rap', 'atlanta', 'memes', 'trap 23279 rap', 'trap', 'atlanta 23280 r&b', 'cover 23281 rap', 'remix 23282 pop', 'adult contemporary', 'ballad', 'easy listening 23283 pop', 'genius korea', 'parody 23284 pop 23285 pop 23286 pop 23287 r&b 23288 country', 'singer-songwriter', 'pop country 23289 pop', 'rap', 'west coast 23290 r&b', 'rap', 'dmv 23291 pop', 'r&b', 'rap', 'alternative', 'bay area', 'canada', 'dmv', 'west coast 23292 pop 23293 country', 'cover 23294 r&b', 'dmv 23295 country', 'ballad', 'piano', 'singer-songwriter', 'memorial 23296 pop 23297 pop 23298 pop 23299 rap', 'r&b', 'soul', 'trap 23300 pop', 'christian 23301 r&b', 'nu disco', 'dmv', 'funk 23302 pop', 'dmv', 'electronic', 'dance-pop', 'dance 23303 rap', 'trap 23304 pop', 'rock', 'alternative rock', 'alternative pop', 'ballad', 'soul pop', 'alternative', 'adult alternative', 'adult contemporary', 'pop-rock 23305 rap', 'atlanta', 'trap 23306 pop', 'r&b 23307 rap', 'trap 23308 rock', 'country', 'ballad', 'alternative rock', 'singer-songwriter 23309 rock', 'country', 'adult contemporary', 'ballad', 'alternative rock', 'australia', 'easy listening 23310 country', 'rock', 'ballad', 'pop country 23311 country', 'easy listening', 'ballad', 'dream pop', 'pop country', 'singer-songwriter 23312 r&b', 'alternative r&b', 'trap 23313 pop', 'electronic', 'dance 23314 pop', 'rap', 'pop rap', 'memes', 'trap 23315 country', 'blues', 'americana', 'singer-songwriter', 'bluegrass 23316 rock', 'singer-songwriter', 'art pop', 'uk', 'art rock', 'jazz 23317 rock', 'dark wave', 'experimental', 'british rock', 'uk', 'avant garde', 'drum & bass', 'electronic', 'experimental rock', 'progressive rock', 'jazz', 'art rock 23318 country', 'ballad', 'pop country', 'singer-songwriter 23319 pop 23320 rock', 'pop', 'adult alternative', 'pop-rock', 'acoustic 23321 pop', 'alternative', 'australia', 'adult alternative', 'soundtrack', 'alternative pop', 'alternative dance', 'synth rock', 'synth-pop', 'new wave 23322 rock', 'pop', 'electro-pop', 'pop-rock 23323 r&b', 'pop', 'trap', 'swing', 'jazz 23324 pop', 'edm', 'electronica', 'electro-pop', 'gaming', 'soundtrack', 'electronic 23325 pop', 'pop rap', 'ballad', 'pop-rock', 'adult alternative', 'adult contemporary', 'piano', 'scandinavia', 'danmark 23326 rap', 'memes', 'dab', 'dance 23327 r&b', 'country', 'pop', 'rock', 'rap 23328 rap', 'trap 23329 pop', 'britpop', 'uk', 'dance-pop', 'dance', 'nu disco 23330 country 23331 country', 'gospel 23332 country', 'pop', 'singer-songwriter 23333 rock', 'country', 'adult contemporary', 'ballad', 'easy listening 23334 rap 23335 country 23336 rock', 'country', 'pop country', 'singer-songwriter 23337 r&b', 'pop', 'uk r&b', 'alternative r&b', 'uk 23338 rap', 'cloud rap', 'trap', 'beef', 'canada 23339 r&b', 'pop', 'alternative r&b', 'piano', 'art pop', 'adult alternative', 'pop-rock', 'uk 23340 pop', 'easy listening', 'chill', 'ballad', 'teen pop 23341 pop 23342 pop', 'r&b 23343 r&b', 'rap', 'trap 23344 rap', 'r&b', 'atlanta', 'trap', 'canada 23345 rap 23346 rock', 'piano rock', 'contemporary folk', 'alternative', 'folk pop', 'adult contemporary', 'americana', 'piano', 'pop-rock', 'adult alternative', 'folk', 'folk rock', 'alternative rock 23347 rap 23348 pop', 'synth-pop', 'edm', 'teen pop', 'electronic trap', 'electronic 23349 country 23350 country', 'rock', 'pop', 'singer-songwriter', 'pop country 23351 pop', 'bubblegum pop', 'teen pop', 'funk-pop 23352 pop', 'singer-songwriter', 'adult contemporary', 'ballad', 'soul', 'uk 23353 r&b', 'country', 'pop', 'rock', 'rap 23354 pop', 'scandipop', 'sverige', 'dance', 'electro-pop', 'scandinavia', 'uk 23355 rap 23356 rap 23357 country', 'singer-songwriter', 'ballad 23358 pop', 'piano', 'ballad 23359 country', 'alternative r&b', 'ballad 23360 rap', 'trap', 'dab', 'memes 23361 rock', 'dark pop', 'acoustic', 'folk rock', 'nu-metal', 'metal', 'hard rock', 'alternative rock', 'cover', 'ballad 23362 pop', 'teen pop', 'canada 23363 rap 23364 rap', 'west coast', 'memphis', 'gangsta rap', 'trap 23365 rap', 'producer', 'east coast', 'trap', 'memes 23366 r&b', 'rap', 'canada 23367 pop', 'electro-pop', 'orchestral 23368 r&b', 'pop', 'trap', 'tropical house', 'girl group 23369 pop', 'r&b', 'singer-songwriter', 'uk r&b', 'uk 23370 rap 23371 country', 'synth-pop', 'pop country 23372 pop', 'soundtrack 23373 country', 'honky tonk', 'pop country', 'americana', 'bluegrass 23374 pop', 'teen pop 23375 r&b', 'country', 'alternative r&b 23376 pop', 'colombia', 'disney', 'soundtrack 23377 country 23378 rap 23379 r&b', 'pop', 'new wave 23380 rap', 'trap 23381 r&b', 'pop-rock', 'feminism 23382 r&b', 'pop', 'electro-pop', 'electro', 'singer-songwriter', 'uk r&b', 'britpop', 'uk 23383 rock', 'pop', 'rap rock', 'pop rap', 'reggae rock', 'reggae', 'alternative', 'alternative rock', 'pop-rock', 'alternative pop', 'electro-pop 23384 pop', 'patois', 'jamaica', 'edm', 'ghana', 'electro', 'dance', 'dancehall', 'electronic 23385 pop', 'cover', 'tropical house', 'dance-pop', 'uk', 'dance 23386 pop', 'rap', 'aussie hip-hop', 'australia', 'electro-hop', 'electronic 23387 r&b', 'pop', 'deep house', 'dance-pop', 'alternative pop', 'dance 23388 rap', 'r&b 23389 pop', 'ballad', 'singer-songwriter', 'teen pop 23390 country 23391 rap', 'atlanta', 'trap 23392 rap', 'east coast', 'trap', 'remix 23393 rap', 'atlanta', 'trap 23394 rap 23395 rap', 'atlanta', 'east coast', 'trap 23396 rap', 'atlanta', 'trap 23397 r&b', 'country', 'pop', 'rock', 'rap 23398 r&b', 'türkçe çeviri 23399 r&b', 'pop', 'rap', 'hardcore hip-hop', 'hip-hop 23400 r&b', 'pop', 'rap', 'chicago rap', 'trap', 'producer', 'memes 23401 rock', 'country', 'rockabilly', 'hard rock 23402 rap', 'experimental', 'trap 23403 r&b', 'pop', 'rap', 'intro', 'christian rap', 'neo soul', 'art pop', 'conscious hip-hop', 'gospel', 'christian 23404 pop', 'r&b', 'rap', 'dmv', 'trap 23405 country', 'australia', 'piano', 'pop country', 'singer-songwriter 23406 pop', 'r&b', 'pop-rock', 'synth rock 23407 pop', 'r&b', 'rap', 'art pop', 'experimental hip-hop', 'experimental', 'alternative r&b', 'canada 23408 pop', 'rap', 'cloud rap', 'conscious hip-hop', 'west coast 23409 pop', 'rap', 'r&b', 'canada 23410 pop', 'future bass', 'australia', 'dance', 'electronic 23411 rap', 'trap', 'experimental hip-hop', 'hardcore hip-hop', 'industrial hip-hop', 'experimental', 'producer 23412 country', 'ballad', 'singer-songwriter 23413 rap', 'dance-pop', 'trap 23414 rap 23415 pop', 'downtempo', 'progressive house', 'house', 'electronic 23416 pop 23417 r&b', 'pop 23418 pop', 'soundtrack', 'disney 23419 rap', 'atlanta', 'trap 23420 r&b', 'pop', 'piano 23421 rap', 'r&b', 'soundtrack', 'cover', 'dc universe', 'west coast 23422 r&b', 'rap', 'pop', 'pop rap', 'alternative r&b', 'trap 23423 pop', 'bounce', 'trap 23424 r&b', 'pop 23425 pop', 'r&b 23426 r&b', 'pop', 'canada 23427 rock', 'alternative rock 23428 r&b', 'country', 'pop', 'rock', 'rap 23429 pop', 'r&b', 'downtempo', 'ballad 23430 pop', 'r&b 23431 pop', 'country', 'zydeco', 'soul pop', 'soul', 'bluegrass 23432 r&b', 'pop', 'ballad 23433 r&b', 'pop 23434 r&b', 'pop 23435 rap 23436 rap', 'pop', 'trap 23437 pop', 'teen pop', 'electro house', 'house', 'electro-pop', 'memes', 'electronic', 'dance-pop', 'dance 23438 country', 'ballad', 'pop country 23439 rap', 'trap', 'canada 23440 pop', 'rap', 'jamaica', 'ragga', 'dancehall', 'canada 23441 rap', 'atlanta', 'trap', 'canada 23442 rap', 'canada 23443 rap', 'canada 23444 rap', 'trip-hop', 'electronica', 'canada 23445 pop', 'r&b', 'dancehall', 'canada 23446 rap', 'canada 23447 r&b 23448 pop', 'rap', 'electro-pop', 'pop rap', 'canada 23449 rap', 'canada 23450 r&b', 'rap', 'canada 23451 r&b', 'pop', 'rap 23452 r&b', 'pop', 'rap', 'intro', 'pop rap', 'ballad', 'canada 23453 r&b', 'rap', 'trap', 'canada 23454 pop 23455 r&b', 'rap', 'canada 23456 rap', 'outro', 'canada 23457 pop', 'r&b', 'dance-pop', 'bubblegum pop', 'soundtrack 23458 country 23459 r&b', 'pop', 'electro house', 'dance-pop', 'synth-pop', 'dance', 'electro-pop 23460 pop', 'rock', 'country', 'pop country', 'alternative country', 'dark pop 23461 pop', 'feminism 23462 pop', 'rock', 'pop-rock 23463 country', 'australia', 'singer-songwriter', 'pop country 23464 rap', 'atlanta', 'memes', 'pop rap 23465 rap', 'gangsta rap', 'trap', 'west coast 23466 rap', 'gospel', 'christian 23467 pop', 'rock', 'dark pop', 'electronic rock', 'pop-rock', 'ballad', 'adult contemporary', 'adult alternative', 'alternative rock', 'soundtrack 23468 country 23469 pop', 'r&b', 'adult alternative', 'adult contemporary', 'ballad', 'soul pop', 'soul', 'dark pop', 'doo-wop 23470 country', 'easy listening', 'ballad', 'singer-songwriter', 'adult contemporary', 'pop country 23471 rock', 'soft rock', 'eighties', 'ballad', 'dark pop', 'easy listening', 'uk', 'singer-songwriter', 'adult contemporary', 'pop-rock', 'new wave 23472 pop', 'trap', 'indie pop', 'glitch', 'electro-pop', 'electronic 23473 pop', 'remix', 'latin music', 'latin pop', 'latin urban', 'puerto rico', 'reggaetón 23474 country', 'pop 23475 pop', 'electro', 'eurodance', 'electro house', 'dance', 'tropical house 23476 country', 'indie pop', 'indie', 'pop country', 'ballad', 'singer-songwriter 23477 r&b', 'country', 'ballad', 'piano', 'adult contemporary', 'alternative r&b', 'singer-songwriter', 'pop country 23478 country', 'ballad', 'pop country 23479 country', 'pop country 23480 pop', 'feminism', 'teen pop 23481 r&b', 'rap', 'trap', 'canada 23482 pop', 'canada 23483 rap', 'east coast', 'atlanta', 'motown', 'producer', 'trap 23484 rap', 'atlanta', 'memes', 'pop rap', 'trap 23485 rock', 'pop', 'synth-pop', 'teen pop', 'memes', 'dance 23486 rap', 'east coast', 'trap 23487 r&b', 'rap 23488 pop 23489 rap', 'pop', 'dark pop', 'pop-rock', 'electronic rock', 'alternative rock', 'indie rap', 'electro-pop', 'soundtrack 23490 rock', 'west coast', 'pop-rock', 'rap rock', 'funk', 'adult alternative', 'funk rock', 'alternative rock 23491 rap', 'pop', 'tropical house', 'trap', 'reggae', 'girl group 23492 country 23493 rap', 'gangsta rap', 'g-funk', 'canada', 'west coast 23494 country 23495 rap', 'atlanta', 'producer', 'trap 23496 r&b', 'rap', 'electronic', 'trap 23497 country', 'pop country 23498 rap', 'r&b', 'dancehall', 'canada 23499 pop', 'memes 23500 pop', 'rock', 'pop-rock', 'punk rock', 'pop-punk 23501 pop 23502 rap', 'trap', 'florida rap 23503 rap', 'dmv', 'trap 23504 pop', 'charity', 'lgbtq+', 'reggaetón 23505 pop', 'en español 23506 rap', 'east coast', 'trap 23507 rap', 'pop', 'west coast 23508 pop', 'colombia', 'en español 23509 pop', 'scandipop', 'sverige', 'scandinavia', 'dance 23510 pop', 'dance', 'electronic 23511 pop', 'teen pop', 'electronic 23512 pop', 'electro-pop 23513 rock', 'country', 'pop country', 'singer-songwriter 23514 pop', 'scandinavia', 'adult alternative', 'pop-rock', 'danmark', 'soul 23515 r&b', 'pop', 'tropical house', 'electro-pop', 'dance 23516 rap', 'trap', 'canada 23517 country 23518 rap 23519 pop', 'r&b 23520 pop', 'moombahton', 'dance', 'edm', 'house', 'scandipop', 'scandinavia', 'electro-pop', 'electro', 'electronic', 'danmark', 'canada 23521 rap', 'horrorcore', 'trap 23522 pop', 'rap', 'dark trap', 'dark pop', 'electronic trap', 'pop-rock', 'edm', 'electro-pop', 'electronic', 'soundtrack', 'dubstep', 'trap 23523 rap', 'pop', 'teen pop 23524 rap', 'trap', 'atlanta', 'canada 23525 pop', 'rap', 'pop rap', 'cloud rap', 'trap 23526 rap 23527 country', 'singer-songwriter', 'pop country', 'ballad 23528 country', 'singer-songwriter', 'ballad', 'pop country 23529 country', 'singer-songwriter', 'reggae 23530 r&b', 'country', 'pop', 'rock', 'rap 23531 country', 'pop country 23532 rap', 'gospel', 'soul', 'trap 23533 pop', 'teen pop', 'future bass', 'edm', 'dance-pop', 'electronic 23534 rap 23535 pop', 'edm', 'teen pop', 'dance-pop', 'dance', 'france', 'electro house', 'electro-pop', 'tropical house', 'canada', 'electronic 23536 r&b', 'trap', 'bay area', 'soundtrack', 'west coast 23537 pop', 'rock', 'soundtrack', 'cover', 'alternative pop', 'alternative', 'alternative rock', 'pop-punk', 'punk rock', 'pop-rock 23538 pop', 'house', 'deep house', 'electro house', 'alternative pop', 'alternative', 'electro', 'scandipop', 'scandinavia', 'sverige', 'electro-pop', 'electronic 23539 r&b', 'rap', 'posse cut', 'trinidad & tobago', 'atlanta', 'dmv 23540 country 23541 rap', 'trap 23542 pop', 'rap', 'atlanta', 'trap 23543 pop', 'dance', 'trap', 'nederland', 'future bass', 'electro-pop', 'dance-pop 23544 r&b', 'rap', 'dmv', 'trap', 'alternative r&b', 'west coast 23545 country', 'pop country 23546 pop', 'r&b', 'alternative pop', 'singer-songwriter', 'ambient', 'alternative r&b', 'alternative', 'cloud rap', 'art pop 23547 r&b', 'pop', 'shoegaze', 'indie', 'singer-songwriter', 'alternative', 'alternative r&b', 'psychedelic soul', 'dream pop', 'art pop', 'indie pop', 'soul', 'alternative pop 23548 pop', 'r&b', 'chamber pop', 'dream pop', 'alternative pop', 'soul', 'neo soul 23549 rap', 'atlanta', 'east coast', 'trap 23550 rock', 'pop', 'adult contemporary', 'ballad', 'piano', 'pop-rock', 'canada 23551 r&b', 'pop', 'singer-songwriter', 'soul', 'alternative r&b', 'art pop', 'ambient 23552 r&b', 'alternative pop', 'trip-hop', 'pop rap', 'cloud rap', 'art pop', 'downtempo', 'alternative r&b', 'electronic 23553 country 23554 pop', 'country', 'pop country', 'singer-songwriter 23555 r&b', 'rap', 'pop', 'reggae', 'dancehall', 'pop rap', 'trinidad & tobago', 'dance-pop 23556 rock', 'country', 'pop country 23557 rap', 'r&b', 'dmv', 'trap', 'alternative r&b 23558 rap 23559 r&b', 'pop', 'rap', 'atlanta', 'trap 23560 r&b', 'pop', 'alternative r&b', 'ballad', 'teen pop 23561 country 23562 rap', 'pop', 'australia', 'lgbtq+ 23563 rap', 'pop rap', 'hip-hop', 'psychedelic', 'trap 23564 pop', 'rap', 'west coast', 'pop rap', 'trap 23565 r&b', 'pop', 'rap', 'west coast', 'deep house', 'electronic', 'house', 'producer 23566 pop 23567 country', 'jazz fusion', 'adult contemporary', 'alternative country', 'electric blues', 'blues', 'doo-wop', 'ballad', 'australia', 'pop country 23568 r&b', 'pop', 'rap', 'alternative r&b', 'cloud rap', 'trap', 'canada 23569 country', 'pop country', 'singer-songwriter 23570 rap', 'pop rap', 'dirty south', 'memes', 'producer', 'trap 23571 rap', 'azərbaycan tərcümə 23572 country 23573 pop', 'electro house', 'dance-pop', 'dance', 'house', 'electronic', 'tropical house 23574 r&b', 'türkçe çeviri', 'turkey', 'türkiye 23575 rap', 'memes', 'dance 23576 rap 23577 pop', 'cover', 'ambient', 'electro-pop', 'electronic 23578 pop', 'soft rock', 'folk pop', 'piano', 'adult alternative', 'adult contemporary', 'contemporary folk', 'ireland', 'ballad', 'singer-songwriter', 'folk', 'acoustic 23579 pop', 'edm', 'dance-pop', 'adult alternative', 'alternative dance', 'electro-pop', 'neo soul', 'alternative pop', 'alternative 23580 rock', 'country', 'pop country', 'ballad 23581 pop 23582 r&b', 'west coast 23583 pop', 'edm', 'electro-pop', 'dance', 'electronic 23584 pop', 'australia', 'future bass', 'electronic 23585 r&b', 'pop', 'electro-pop', 'singer-songwriter 23586 r&b', 'psychedelic soul', 'art pop', 'neo soul 23587 r&b', 'neo soul 23588 rap', 'k-solo', 'south korea', 'genius korea', 'k-hip-hop', 'hip-hop 23589 pop 23590 country', 'ballad', 'singer-songwriter 23591 r&b', 'rap 23592 pop', 'synth-pop', 'jazz-funk', 'teen pop', 'hip-hop', 'nu disco', 'funk-pop', 'funk 23593 r&b', 'soundtrack', 'gaming 23594 rap', 'pop', 'tropical house 23595 country', 'ballad', 'singer-songwriter 23596 pop', 'adult contemporary', 'pop-rock', 'ballad', 'pop country 23597 pop', 'electro-funk', 'synth-pop', 'electro-pop', 'j-pop', 'memes', 'youtube', 'comedy', 'japan 23598 pop', 'electro-pop', 'alternative pop', 'alternative dance', 'dance 23599 pop', 'scandipop', 'electronic', 'hip-hop', 'sverige', 'scandinavia 23600 pop', 'rock', 'electro-pop', 'pop-rock 23601 pop', 'tropical house', 'nu disco', 'dance', 'electronic', 'dance-pop', 'electro-pop', 'uk 23602 country', 'feminism', 'dark pop', 'pop country 23603 pop', 'rap', 'emo revival', 'alternative', 'alternative rock', 'pop-rock', 'pop-punk', 'punk revival', 'punk rock', 'hip-hop', 'trap', 'emo trap', 'emo rap', 'emo', 'emo pop', 'pop rap 23604 pop', 'edm', 'electronic trap', 'electronic 23605 country', 'singer-songwriter', 'alternative country 23606 rap', 'hip-hop 23607 country', 'adult contemporary', 'easy listening', 'ballad 23608 r&b', 'rap', 'alternative r&b', 'trap', 'canada 23609 pop', 'cover', 'a cappella', 'christmas 23610 rap', 'producer', 'canada', 'trap 23611 country', 'pop 23612 pop', 'teen pop', 'dance-pop', 'girl group', 'uk 23613 rap', 'gangsta rap', 'hardcore hip-hop', 'atlanta', 'trap 23614 rap', 'pop', 'dancehall', 'dance-pop 23615 rap', 'producer 23616 r&b', 'pop', 'uk r&b', 'alternative r&b', 'adult contemporary', 'easy listening', 'acoustic', 'singer-songwriter', 'ballad', 'uk 23617 rap', 'east coast', 'canada', 'trap', 'beef 23618 country', 'piano', 'pop country', 'ballad', 'adult contemporary 23619 rap', 'trap 23620 rap', 'atlanta', 'trap 23621 rap', 'beef', 'canada 23622 rap', 'east coast', 'trap 23623 rap', 'trap 23624 country', 'pop country', 'singer-songwriter 23625 rap', 'trap', 'east coast 23626 pop', 'colombia', 'latin pop', 'latin music', 'reggaetón', 'en español 23627 rap', 'trap', 'east coast 23628 rap', 'trap', 'atlanta', 'canada 23629 rap', 'trap 23630 pop', 'electro-pop', 'dance', 'electronic 23631 r&b', 'trap 23632 rock', 'country', 'singer-songwriter', 'ballad 23633 rock', 'soft rock', 'adult alternative', 'gospel', 'jewish music', 'eighties', 'christian', 'soundtrack', 'canada', 'folk rock', 'singer-songwriter', 'ballad', 'folk 23634 rock', 'progressive rock', 'psychedelic rock', 'soul', 'neo soul', 'psychedelic soul', 'alternative r&b', 'funk', 'blues rock', 'neo-psychedelia', 'psychedelic 23635 rap', 'atlanta', 'memes', 'trap 23636 rap', 'hip-hop', 'conscious hip-hop', 'boom bap', 'politics', 'east coast 23637 pop', 'country', 'pop country 23638 pop', 'dance', 'electronic 23639 r&b', 'pop', 'canada', 'dark pop', 'alternative r&b', 'singer-songwriter 23640 r&b', 'pop', 'outro', 'nu disco', 'synth-pop', 'singer-songwriter', 'alternative r&b', 'electro-pop 23641 rock', 'pop', 'piano', 'chill', 'singer-songwriter', 'adult alternative', 'adult contemporary', 'blues rock', 'pop-rock 23642 r&b', 'pop', 'teen pop', 'girl group 23643 r&b', 'p-funk', 'psychedelic soul', 'alternative r&b', 'neo soul', 'memes', 'neo-psychedelia', 'soul 23644 r&b', 'pop', 'hip-hop', 'soul pop', 'new jack swing', 'funk 23645 pop', 'remix 23646 rock', 'pop 23647 rap', 'hip-hop 23648 r&b', 'pop', 'piano', 'ballad', 'easy listening', 'adult contemporary 23649 country', 'alternative country', 'singer-songwriter', 'americana', 'bluegrass 23650 rap', 'r&b', 'alternative r&b', 'singer-songwriter 23651 r&b', 'pop', 'canada', 'singer-songwriter 23652 r&b', 'alternative r&b', 'trap', 'singer-songwriter 23653 r&b', 'pop', 'adult contemporary', 'alternative r&b', 'ballad', 'singer-songwriter 23654 r&b', 'pop', 'canada', 'electronic', 'dance', 'synth-pop', 'alternative r&b', 'nu disco 23655 rap', 'r&b', 'synth-pop', 'trap', 'adult contemporary', 'alternative r&b', 'singer-songwriter 23656 r&b', 'pop', 'synth-pop', 'funk-pop', 'singer-songwriter 23657 r&b', 'pop', 'chill', 'easy listening', 'adult contemporary', 'alternative r&b', 'ballad', 'singer-songwriter 23658 pop', 'musicals', "children's music", 'disney', 'soundtrack 23659 r&b', 'pop', 'ambient', 'alternative r&b', 'dark pop', 'interlude', 'singer-songwriter 23660 r&b', 'pop', 'alternative r&b', 'singer-songwriter 23661 r&b', 'pop', 'alternative r&b', 'singer-songwriter', 'electro-pop 23662 r&b', 'pop', 'singer-songwriter', 'nu disco', 'electro-pop 23663 r&b', 'pop', 'nu disco', 'alternative r&b', 'singer-songwriter', 'electro-pop 23664 r&b', 'pop', 'trap', 'singer-songwriter', 'electro-pop 23665 pop', 'musicals', "children's music", 'disney', 'soundtrack 23666 r&b', 'west coast 23667 pop', 'cover', "children's music", 'musicals', 'disney', 'soundtrack 23668 pop', 'musicals', "children's music", 'disney', 'soundtrack 23669 pop', 'uk 23670 pop 23671 rap', 'jazz rap', 'boom bap 23672 rock', 'country', 'americana', 'bluegrass', 'honky tonk 23673 pop', 'ελληνικη μεταφραση (greek translation) 23674 rap', 'trap 23675 rap', 'gangsta rap', 'trap 23676 rap', 'conscious hip-hop', 'east coast', 'trap 23677 rap', 'jazz rap', 'conscious hip-hop', 'boom bap 23678 rap', 'jazz rap 23679 rap', 'jazz rap', 'jazz 23680 r&b', 'rap', 'jazz rap 23681 rap', 'conscious hip-hop', 'jazz rap', 'boom bap 23682 r&b', 'rap', 'soul', 'electro-soul', 'electro-funk', 'funk rock', 'funk 23683 rap', 'jazz', 'jazz rap 23684 pop', 'memorial', 'teen pop', 'dance-pop', 'uk', 'electronic', 'dance 23685 rap', 'hip-hop', 'boom bap 23686 rap', 'battle rap 23687 rap', 'atlanta', 'cloud rap', 'trap 23688 rap', 'atlanta', 'trap', 'canada 23689 rock', 'pop', 'puerto rico', 'seventies', 'en español', 'latin pop', 'latin music', 'holiday', 'christmas 23690 pop', 'cover', 'christmas 23691 pop', 'sixties', 'christmas', 'holiday 23692 pop', 'disco', 'adult contemporary', 'eighties', 'singer-songwriter', 'uk', 'holiday', 'christmas', 'new wave', 'synth-pop 23693 rap', 'r&b', 'atlanta', 'dmv', 'trap 23694 rap 23695 rap', 'atlanta', 'gangsta rap', 'trap 23696 rap', 'pop rap', 'memes', 'trap 23697 rap', 'trap 23698 rock', 'country', 'pop country 23699 pop', 'rap', 'atlanta', 'memes', 'pop rap', 'trap 23700 country', 'pop country', 'ballad 23701 rap', 'florida rap', 'trap 23702 rap 23703 rock', 'soul', 'iceland', 'blues', 'piano', 'alternative', 'alternative rock', 'adult alternative', 'blues rock 23704 pop 23705 pop', 'puerto rico', 'latin music', 'latin urban', 'latin pop', 'en español', 'reggaetón 23706 country', 'ballad', 'singer-songwriter 23707 rap', 'pop rap', 'cloud rap', 'psychedelic', 'trap', 'canada 23708 r&b', 'pop', 'electro house', 'electro-pop', 'synth-pop', 'house 23709 rock', 'country', 'singer-songwriter 23710 rap', 'meme rap', 'trap', 'memes 23711 r&b', 'pop', 'uk r&b', 'dancehall', 'synth-pop', 'dance', 'singer-songwriter', 'tropical house', 'uk 23712 pop', 'ballad', 'adult alternative', 'adult contemporary', 'pop-rock', 'uk 23713 r&b', 'soul', 'psychedelic', 'tropical house 23714 r&b', 'country', 'alternative r&b', 'singer-songwriter 23715 country 23716 pop', 'dance-pop', 'edm', 'synth-pop', 'dance', 'electronic 23717 rap', 'atlanta', 'trap 23718 pop', 'dance', 'alternative pop', 'alternative', 'soundtrack 23719 pop', 'r&b', 'rap', 'dancehall', 'canada 23720 country', 'dark pop', 'pop country', 'singer-songwriter', 'ballad 23721 pop', 'downtempo', 'art pop', 'trap', 'alternative pop', 'trip-hop', 'piano', 'electronic', 'electro-pop 23722 country', 'pop country', 'singer-songwriter 23723 pop 23724 country', 'pop', 'pop country', 'power pop', 'singer-songwriter 23725 pop', 'chill', 'baroque pop', 'alternative pop', 'easy listening', 'adult contemporary', 'ballad 23726 rap 23727 country', 'ballad 23728 pop', 'uk', 'cover 23729 rap', 'trap 23730 r&b', 'pop', 'country', 'alternative r&b', 'singer-songwriter', 'pop country 23731 rap', 'posse cut', 'atlanta', 'trap 23732 rap', 'trap 23733 rap', 'atlanta', 'trap 23734 rap', 'pop', 'trinidad & tobago', 'electro-pop', 'dancehall', 'electronic', 'dance', 'canada 23735 rap 23736 rap', 'atlanta', 'trap 23737 pop', 'edm', 'electro', 'synth-pop', 'dance-pop', 'future bass', 'electro-pop', 'uk', 'nederland', 'electronic', 'dance 23738 rap', 'atlanta', 'intro', 'trap 23739 rap', 'pop', 'latin urban', 'puerto rico', 'latin music', 'latin pop', 'reggaetón', 'en español 23740 rap 23741 rap', 'producer', 'hardcore hip-hop 23742 rock', 'album-oriented rock (aor)', 'pop-rock 23743 country', 'piano', 'ballad', 'memorial', 'singer-songwriter 23744 rap', 'trap 23745 rap 23746 rap', 'trap 23747 rap 23748 pop', 'cover', 'piano', 'ballad', 'disney', 'musicals', 'soundtrack 23749 r&b', 'pop 23750 rap 23751 country', 'adult contemporary', 'easy listening', 'ballad', 'singer-songwriter 23752 rap', 'florida rap', 'trap metal', 'hardcore hip-hop', 'trap 23753 rap 23754 pop', 'teen pop', 'socialism', 'politics', 'alternative dance', 'synth-pop', 'electro-pop', 'dance', 'dance-pop', 'dancehall 23755 rap', 'pop', 'atlanta', 'afrobeats', 'tropical house', 'electro-pop', 'electronic 23756 rap', 'pop', 'soundtrack 23757 r&b', 'rap 23758 pop', 'australia', 'soundtrack 23759 pop', 'en español', 'latin music', 'latin pop', 'bachata 23760 rap 23761 pop', 'traduction française 23762 rap', 'trap', 'memes', 'dance 23763 rap', 'memes', 'remix', 'tv 23764 pop', 'tropical house 23765 country', 'indie pop', 'indie', 'pop country', 'bubblegum pop', 'singer-songwriter 23766 country', 'soundtrack', 'alternative country', 'adult contemporary', 'pop country', 'singer-songwriter 23767 rap', 'florida rap', 'producer', 'trap 23768 pop', 'uk 23769 pop', 'bubblegum pop', 'dream pop', 'dark pop', 'psychedelic', 'folk pop', 'experimental folk', 'alternative', 'alternative pop 23770 rap', 'cloud rap', 'atlanta', 'trap 23771 rap', 'atlanta', 'memes', 'trap 23772 pop', 'electro-pop', 'alternative rock 23773 rap', 'atlanta', 'trap 23774 pop', 'pop-rock', 'piano', 'edm', 'adult contemporary', 'future bass', 'uk', 'electro-pop', 'electronic', 'dance 23775 rap', 'atlanta', 'trap 23776 rap', 'atlanta', 'trap 23777 pop', 'teen pop', 'electronic', 'dance 23778 r&b', 'rap', 'pop', 'nu disco', 'dance', 'electronic 23779 r&b', 'pop', 'rap', 'atlanta 23780 rap', 'alternative r&b', 'atlanta', 'trap', 'canada 23781 rap', 'atlanta', 'trap', 'beef 23782 r&b 23783 country', 'pop', 'pop country', 'ballad', 'easy listening', 'adult contemporary', 'boy band 23784 country 23785 pop', 'art pop', 'nu disco', 'dance-pop', 'electro-pop', 'new zealand', 'alternative pop 23786 pop', 'acoustic', 'orchestral', 'easy listening', 'piano', 'singer-songwriter', 'adult contemporary', 'ballad', 'uk 23787 pop', 'uk 23788 rap', 'pop', 'folk', 'ireland', 'celtic', 'uk 23789 pop', 'uk 23790 pop', 'uk 23791 pop', 'singer-songwriter', 'memorial', 'uk 23792 r&b', 'pop', 'uk r&b', 'singer-songwriter', 'uk 23793 rap', 'pop', 'uk rap', 'uk 23794 pop', 'uk 23795 pop', 'uk 23796 rap', 'trinidad & tobago', 'diss track', 'trap', 'beef', 'canada 23797 rap', 'trinidad & tobago', 'dancehall 23798 rap 23799 r&b', 'rap', 'art pop', 'pop rap', 'alternative r&b', 'lgbtq+ 23800 pop', 'new zealand', 'ballad', 'piano 23801 r&b', 'alternative r&b', 'trap 23802 pop', 'r&b', 'synth-pop', 'house', 'chill', 'dancehall', 'tropical house', 'canada 23803 rap', 'atlanta', 'trap', 'canada 23804 rap', 'neo soul', 'trap', 'canada 23805 rap', 'trap', 'canada 23806 pop', 'r&b', 'canada 23807 rap', 'atlanta', 'trap', 'canada 23808 r&b', 'pop', 'dancehall', 'canada 23809 rap', 'trap', 'uk rap', 'uk', 'canada 23810 r&b', 'rap', 'afrobeats', 'south africa', 'dancehall', 'uk', 'canada 23811 rap', 'memes', 'trap', 'uk rap', 'uk', 'canada 23812 r&b', 'rap', 'interlude', 'trap', 'soul', 'canada', 'uk 23813 r&b', 'uk', 'alternative r&b', 'canada 23814 pop', 'canada', 'dancehall 23815 r&b', 'rap', 'canada', 'soul 23816 rap', 'canada 23817 r&b', 'rap', 'canada 23818 rap', 'trap', 'canada 23819 rap', 'canada 23820 r&b', 'rap', 'canada 23821 rap', 'interlude', 'grime', 'trap', 'uk rap', 'uk', 'canada 23822 rap', 'canada 23823 pop', 'rap 23824 rap', 'trap 23825 rap', 'pop', 'trinidad & tobago', 'dance 23826 rap', 'trap', 'neo soul', 'beef', 'west coast 23827 rap', 'hip-hop', 'emo trap', 'emo rap', 'trap 23828 country', 'ballad 23829 pop', 'r&b', 'dancehall', 'alternative r&b', 'alternative pop', 'uk r&b', 'singer-songwriter', 'uk', 'canada 23830 rap', 'hardcore hip-hop', 'dark trap', 'industrial hip-hop', 'hip-hop', 'conscious hip-hop', 'trap', 'west coast 23831 pop', 'country', 'pop country 23832 rap', 'dmv', 'football (american)', 'trap 23833 country', 'singer-songwriter', 'pop country 23834 country', 'acoustic', 'easy listening', 'adult contemporary', 'ballad', 'singer-songwriter 23835 pop', 'spanish pop', 'spanish urban', 'puerto rico', 'latin urban', 'spanish music', 'reggaetón', 'latin music', 'latin pop', 'en español 23836 rap', 'trap 23837 pop', 'dance', 'electronic 23838 rap', 'trap 23839 rap', 'new york', 'florida rap', 'east coast', 'trap 23840 pop', 'rap', 'dance 23841 country', 'piano', 'adult contemporary', 'easy listening', 'ballad 23842 r&b', 'dark pop', 'adult alternative', 'alternative r&b', 'alternative', 'uk', 'neo soul', 'soul 23843 rock', 'adult contemporary', 'ballad', 'pop-rock', 'piano', 'uk 23844 pop', 'r&b', 'ballad', 'synth-pop', 'downtempo', 'alternative pop', 'alternative', 'electronic 23845 rap', 'deutsche übersetzung 23846 rap', 'trap 23847 rap', 'pop 23848 country 23849 pop', 'trap', 'electro-pop', 'electronic', 'indie pop 23850 country', 'ballad 23851 country', 'pop country 23852 rap', 'hardcore hip-hop', 'hip-hop', 'politics', 'producer', 'conscious hip-hop', 'trap', 'west coast 23853 pop 23854 pop', 'r&b', 'rap', 'producer', 'conscious hip-hop', 'trap', 'west coast 23855 pop', 'r&b', 'rap', 'chill', 'producer', 'ballad', 'conscious hip-hop', 'west coast 23856 pop', 'r&b', 'rap', 'producer', 'conscious hip-hop', 'trip-hop', 'west coast 23857 r&b', 'rap', 'industrial hip-hop', 'jazz rap', 'hardcore hip-hop', 'experimental hip-hop', 'conscious hip-hop', 'boom bap', 'west coast 23858 pop', 'rap', 'producer', 'conscious hip-hop', 'west coast 23859 pop', 'r&b', 'rap', 'hip-hop', 'ballad', 'producer', 'conscious hip-hop', 'alternative', 'alternative rock', 'lo-fi', 'west coast 23860 pop', 'adult contemporary', 'easy listening 23861 pop', 'rap', 'news ', 'politics', 'producer', 'conscious hip-hop', 'boom bap', 'west coast 23862 pop', 'rap', 'producer', 'conscious hip-hop', 'west coast 23863 pop', 'rap', 'producer', 'conscious hip-hop', 'politics', 'news ', 'spoken word', 'west coast 23864 rap', 'cloud rap', 'conscious hip-hop', 'trap', 'west coast 23865 pop', 'rap', 'g-funk', 'gangsta rap', 'conscious hip-hop', 'producer', 'west coast 23866 r&b', 'rap', 'soundtrack 23867 rap', 'posse cut', 'atlanta', 'memes', 'trap 23868 rap', 'dmv', 'race / ethnicity', 'religion', 'conscious hip-hop', 'trap 23869 country', 'bluegrass', 'singer-songwriter', 'memorial 23870 rock', 'adult alternative', 'soundtrack', 'folk rock', 'folk', 'doo-wop', 'ballad', 'alternative rock', 'indie rock 23871 pop', 'singer-songwriter', 'dance rock', 'dance', 'alternative pop', 'pop-rock', 'canada 23872 pop', 'bubblegum pop', 'synth-pop', 'downtempo', 'alternative r&b', 'dream pop', 'alternative', 'alternative pop 23873 pop', 'teen pop', 'dance', 'synthwave', 'synth-pop', 'funk-pop', 'nu disco', 'funk', 'adult contemporary', 'soul pop', 'pop-rock 23874 pop', 'r&b', 'alternative pop', 'emo trap', 'trap', 'alternative r&b 23875 rock', 'pop', 'adult alternative', 'synth-pop', 'new wave', 'alternative pop', 'electronic rock', 'pop-rock 23876 country', 'pop country', 'ballad', 'singer-songwriter 23877 rap', 'türkçe çeviri 23878 rap', 'deutsche übersetzung', 'deutschland', 'translation 23879 pop', 'electronic', 'tropical house 23880 pop', 'rock', 'synth-pop', 'electro-pop', 'pop-rock 23881 pop', 'deutsche übersetzung 23882 rap', 'r&b', 'dmv', 'reggae', 'jamaica', 'dancehall', 'soul 23883 pop', 'teen pop', 'ireland 23884 rap', 'atlanta', 'trap 23885 pop', 'americana', 'folk pop', 'acoustic', 'singer-songwriter', 'uk 23886 rap', 'atlanta', 'east coast', 'trap 23887 pop', 'pop country', 'easy listening', 'soft rock', 'ballad', 'pop-rock 23888 country', 'pop country', 'ballad 23889 country', 'singer-songwriter 23890 country', 'singer-songwriter', 'americana', 'honky tonk 23891 r&b', 'rap', 'pop', 'funk', 'uk', 'dance 23892 pop', 'teen pop 23893 pop', 'rock', 'alternative', 'adult alternative', 'alternative rock', 'pop-rock 23894 pop', 'reggaetón', 'latin pop', 'latin music', 'en español 23895 pop', 'future bass', 'tropical house', 'electro-pop', 'dance 23896 pop', 'colombia', 'latin music', 'latin pop', 'reggaetón', 'en español 23897 r&b', 'rap', 'pop', 'tropical house', 'uk rap', 'uk r&b', 'synth-pop', 'uk 23898 country 23899 pop', 'deutsche übersetzung 23900 r&b', 'pop', 'dancehall', 'cuba', 'west coast', 'dance-pop', 'dance 23901 pop', 'r&b 23902 rock', 'country', 'pop country 23903 pop', 'teen pop', 'feminism', 'electro-pop', 'tropical house 23904 country 23905 pop', 'r&b', 'dancehall', 'boom bap', 'singer-songwriter', 'conscious hip-hop', 'dark pop', 'trap', 'soul 23906 pop', 'r&b', 'rap', 'dark pop', 'singer-songwriter', 'dancehall', 'conscious hip-hop', 'trap 23907 rap', 'atlanta', 'trap 23908 rap', 'r&b', 'singer-songwriter', 'dancehall', 'conscious hip-hop', 'soul', 'trap 23909 country 23910 pop', 'rap', 'r&b', 'trap', 'conscious hip-hop', 'dark pop', 'soul', 'dancehall 23911 pop', 'rap', 'r&b', 'conscious hip-hop', 'soul', 'dancehall', 'trap 23912 rap', 'cloud rap', 'psychedelic', 'hip-hop', 'trap 23913 pop', 'traduction française 23914 rap', 'pop', 'atlanta', 'dancehall', 'girl group', 'dance 23915 r&b', 'pop', 'rap', 'new orleans r&b', 'dancehall', 'uk', 'funk nacional', 'canada 23916 rap', 'atlanta', 'trap 23917 r&b', 'rap', 'west coast', 'dmv 23918 country', 'pop country 23919 r&b', 'rap', 'pop', 'cuba', 'atlanta', 'electronic trap', 'trap', 'electro-pop', 'reggae', 'reggaetón', 'electro', 'dance', 'electronic', 'dancehall 23920 rap', 'meme rap', 'trap', 'memes', 'beef', 'youtube 23921 rock', 'country 23922 r&b 23923 pop', 'synth-pop', 'teen pop', 'france', 'canada', 'electronic', 'electro-pop', 'dance 23924 rap', 'r&b', 'alternative r&b', 'trap 23925 country 23926 pop', 'latin pop', 'puerto rico', 'latin urban', 'latin music', 'reggaetón', 'en español 23927 country', 'pop country', 'singer-songwriter 23928 r&b', 'rap', 'dmv', 'west coast', 'trap 23929 rock', 'country', 'singer-songwriter', 'outlaw country', 'alternative rock', 'rockabilly', 'hard rock', 'honky tonk', 'alternative country 23930 r&b 23931 rap', 'pop', 'teen pop', 'ska', 'tropical house', 'dance 23932 rap', 'trap 23933 rap', 'atlanta', 'trap 23934 pop', 'rock', 'psychedelic', 'adult contemporary', 'alternative dance', 'electronic rock', 'adult alternative', 'pop-rock', 'funk rock', 'electronic', 'alternative pop', 'alternative rock 23935 rap 23936 r&b', 'rap', 'dancehall', 'canada 23937 rap', 'r&b', 'pop 23938 rap', 'atlanta', 'canada', 'trap 23939 rap', 'trap 23940 r&b', 'rap 23941 pop', 'french pop', 'france', 'dancehall', 'latin music', 'en español 23942 rap', 'trinidad & tobago', 'trap 23943 pop 23944 rap', 'east coast', 'west coast', 'alternative', 'trap 23945 country', 'honky tonk 23946 rap', 'atlanta', 'trap 23947 rap', 'hip-hop', 'east coast', 'conscious hip-hop 23948 pop', 'piano', 'soul pop', 'soul', 'ballad', 'alternative pop 23949 rap', 'atlanta', 'trap 23950 rap', 'hip-hop', 'east coast 23951 rap', 'hip-hop', 'east coast 23952 rap', 'hip-hop', 'east coast 23953 r&b', 'pop', 'teen pop 23954 rap', 'east coast', 'hip-hop 23955 rap', 'mental health', 'conscious hip-hop', 'east coast', 'hip-hop 23956 rap', 'hip-hop', 'east coast 23957 rap', 'hip-hop', 'east coast 23958 pop', 'rap 23959 rap', 'hip-hop', 'east coast 23960 r&b', 'pop', 'tropical house', 'uk r&b', 'uk', 'britpop', 'dance 23961 pop', 'deutsche übersetzung 23962 rap', 'atlanta', 'trap 23963 rap', 'east coast', 'trap 23964 pop', 'rap', 'youtube 23965 pop', 'r&b', 'trap 23966 pop', 'rock', 'pop country', 'funk', 'blues 23967 pop', 'uk 23968 pop', 'tv', 'musicals', 'disney 23969 rap 23970 rap 23971 pop', 'musicals', 'tv', 'disney', 'soundtrack', "children's music 23972 rap 23973 pop', 'latin pop', 'dominican republic', 'latin music', 'en español', 'bachata 23974 rap', 'memorial 23975 rap 23976 rap 23977 r&b', 'rap', 'atlanta 23978 pop', 'country', 'easy listening', 'singer-songwriter', 'pop country 23979 country', 'pop country', 'singer-songwriter 23980 country 23981 pop', 'dance', 'electronic 23982 r&b 23983 pop', 'dance', 'dance-pop', 'dancehall', 'tropical house', 'electronic', 'electro-pop', 'uk 23984 pop', 'rock', 'alternative rock', 'pop-rock', 'adult alternative', 'adult contemporary', 'pop-punk', 'indie rock 23985 country', 'singer-songwriter', 'dark pop', 'easy listening', 'adult contemporary', 'ballad', 'pop country 23986 pop', 'pop-rock 23987 country', 'pop country 23988 country', 'pop country 23989 rap', 'gangsta rap', 'trap 23990 rap', 'trap 23991 r&b', 'rap', 'pop', 'atlanta', 'latin pop', 'latin trap', 'motown', 'méxico', 'cuba', 'trap 23992 pop', 'ballad', 'electro-pop 23993 rap', 'trap 23994 r&b', 'alternative r&b 23995 pop', 'tv', 'musicals', 'disney', 'funk-pop 23996 pop', 'deutsche übersetzung 23997 pop', 'electro-pop', 'electronic', 'dance 23998 country 23999 r&b', 'rap 24000 rap', 'trap 24001 country', 'singer-songwriter', 'adult contemporary', 'easy listening', 'ballad 24002 country', 'honky tonk 24003 pop', 'canada', 'dance-pop', 'dance 24004 rap', 'atlanta', 'trap 24005 rap 24006 pop', 'electro', 'electro house', 'house', 'alternative', 'dance', 'adult alternative', 'adult contemporary', 'electronic', 'diss track', 'deep house', 'dark pop', 'beef', 'dance-pop', 'alternative pop', 'electro-pop 24007 pop', 'electronic rock', 'electro-pop', 'electronic', 'pop-rock', 'alternative', 'alternative pop 24008 rap', 'diss track', 'youtube', 'beef 24009 rap', 'trap 24010 r&b', 'dmv', 'dancehall 24011 r&b', 'rap', 'memorial', 'florida rap', 'conscious hip-hop', 'alternative r&b', 'emo rap', 'lo-fi 24012 rap', 'remix 24013 rap 24014 rap', 'trap 24015 rap', 'florida rap', 'conscious hip-hop', 'alternative r&b', 'lo-fi', 'emo rap 24016 rap', 'trap 24017 r&b', 'pop', 'teen pop', 'chill', 'pop-rock', 'funk 24018 country', 'pop country', 'singer-songwriter 24019 rock', 'florida rap', 'folk', 'folk rock', 'alternative rock', 'acoustic', 'emo', 'alternative 24020 rap', 'trap 24021 rap', 'intro', 'cloud rap', 'trap 24022 rap', 'emo rap', 'trap 24023 rap', 'electronic trap', 'trap 24024 r&b', 'rap', 'canada', 'alternative r&b', 'trap 24025 rap', 'cloud rap', 'trap 24026 rock', 'acoustic', 'emo', 'indie rock', 'alternative rock', 'folk 24027 rap', 'emo trap', 'emo rap', 'trap 24028 rock', 'alternative rock', 'shoegaze', 'emo 24029 r&b', 'rap', 'florida rap', 'conscious hip-hop', 'emo rap', 'lo-fi', 'emo 24030 pop', 'ballad', 'adult contemporary', 'soul pop 24031 pop', 'drumstep', 'adult contemporary', 'industrial', 'dark pop', 'tropical house', 'dubstep', 'trap', 'electronic', 'electro-pop 24032 rap', 'trap 24033 pop', 'rap', 'electronic', 'electro-pop', 'pop rap', 'alternative pop', 'alternative', 'dance-pop 24034 country', 'pop country 24035 rap', 'pop', 'r&b', 'soundtrack', 'alternative r&b', 'electronic', 'psychedelic', 'soul pop 24036 r&b', 'pop', 'rap 24037 r&b', 'pop', 'baroque pop', 'piano', 'singer-songwriter', 'adult contemporary', 'soul pop', 'orchestral', 'soul', 'ballad', 'uk 24038 r&b', 'pop', 'australia', 'uk r&b', 'uk 24039 r&b', 'teen pop', 'bubblegum pop', 'soul', 'trap 24040 country 24041 country', 'singer-songwriter 24042 rap', 'florida rap', 'trap 24043 rap', 'trap', 'east coast', 'west coast 24044 r&b', 'rap', 'florida rap', 'posse cut', 'producer', 'east coast', 'dirty south', 'dmv', 'trap 24045 pop', 'teen pop', 'electro-pop', 'tropical house', 'electronic', 'dance 24046 pop', 'soft rock', 'piano', 'singer-songwriter', 'ireland', 'ballad', 'folk 24047 rap', 'r&b', 'atlanta', 'canada', 'trap 24048 pop', 'edm', 'k-pop (케이팝)', 'south korea', 'boy band', 'electronic', 'electro-pop', 'dance', 'genius korea', 'korean 24049 pop', 'traduzione italiana 24050 pop', 'r&b 24051 pop', 'rap', 'adult contemporary', 'piano 24052 rock', 'country', 'pop country', 'singer-songwriter 24053 pop', 'country', 'pop country', 'singer-songwriter 24054 country', 'singer-songwriter', 'ballad 24055 rap', 'new york', 'trinidad & tobago', 'east coast', 'trap', 'remix 24056 rap', 'trap 24057 rap', 'trap 24058 rap', 'east coast', 'trap 24059 rap', 'trap 24060 rap', 'trap 24061 country', 'pop country 24062 pop', 'rap', 'latin pop', 'latin music', 'en español 24063 rap', 'pop', 'remix 24064 pop', 'adult contemporary', 'easy listening', 'dance-pop', 'dance', 'nu disco', 'funk 24065 country', 'adult contemporary', 'easy listening', 'alternative country', 'pop country', 'alternative r&b', 'ballad 24066 country 24067 pop 24068 r&b', 'rap', 'halloween', 'atlanta', 'dmv', 'trap 24069 country', 'pop country', 'ballad 24070 r&b', 'pop', 'rap', 'alternative r&b 24071 rap', 'atlanta', 'trap 24072 country', 'pop country', 'singer-songwriter 24073 pop', 'puerto rico', 'latin urban', 'latin pop', 'latin music', 'reggaetón', 'en español 24074 country 24075 pop', 'synth-pop', 'electronic', 'singer-songwriter', 'trap', 'electro-pop 24076 rap', 'atlanta', 'trap 24077 pop', 'electro-pop', 'pop country 24078 rap', 'atlanta', 'trap 24079 rap', 'atlanta', 'trap 24080 rap', 'atlanta', 'trap 24081 rap', 'soundtrack', 'east coast', 'trap 24082 pop 24083 rap', 'atlanta', 'trap 24084 pop', 'uk', 'funk-pop 24085 rap', 'atlanta', 'trap 24086 rap', 'posse cut', 'trinidad & tobago', 'atlanta', 'trap 24087 rap', 'atlanta', 'trap 24088 rap', 'atlanta', 'trap 24089 rap', 'atlanta', 'motown', 'trap 24090 rap 24091 pop', 'country', 'alternative r&b', 'alternative country', 'chill', 'pop country', 'spotify singles 24092 r&b', 'pop', 'ballad', 'electronic', 'trap', 'alternative', 'alternative pop', 'adult contemporary', 'synth-pop', 'electro-pop 24093 rap', 'france', 'french rap 24094 rap', 'trap 24095 r&b', 'pop', 'synth-pop', 'teen pop 24096 rap', 'trap 24097 rap', 'atlanta', 'motown', 'trap 24098 rap', 'atlanta', 'motown', 'trap 24099 pop', 'rap', 'hip-hop', 'ballad', 'piano 24100 rap', 'gangsta rap', 'new york', 'beef', 'hardcore hip-hop', 'trap', 'east coast 24101 rap', 'trap', 'canada', 'east coast 24102 country', 'feminism', 'australia 24103 rap', 'trap', 'cloud rap', 'emo rap 24104 rap', 'west coast 24105 rap', 'trap 24106 pop', 'dance-pop', 'dance', 'reggaetón', 'latin pop', 'en español 24107 rock', 'alternative rock', 'emo trap', 'emo rap', 'pop-punk', 'east coast', 'alternative 24108 rap', 'pop', 'deutsche übersetzung 24109 rap', 'pop', 'soundtrack', 'alternative 24110 r&b 24111 rock', 'pop 24112 rap', 'trap 24113 country 24114 pop', 'country', 'tropical house', 'adult contemporary', 'easy listening', 'pop country', 'chill 24115 rap', 'pop', 'dance 24116 rap', 'south korea', 'k-idol-hip-hop', 'boy band', 'edm', 'hip-hop', 'remix', 'genius korea', 'korean', 'electronic 24117 rap', 'trap 24118 country', 'easy listening', 'pop country', 'singer-songwriter 24119 pop', 'rock', 'pop-rock', 'wales', 'piano', 'uk', 'eighties', 'ballad 24120 pop', 'colombia', 'puerto rico', 'latin urban', 'latin music', 'reggaetón', 'latin pop', 'en español 24121 pop', 'r&b', 'rap', 'teen pop', 'dark pop', 'west coast 24122 rap', 'new york', 'gangsta rap', 'hardcore hip-hop', 'trap', 'east coast', 'beef 24123 rap 24124 pop', 'puerto rico', 'latin urban', 'latin pop', 'reggaetón', 'en español', 'latin music', 'bachata 24125 pop', 'country', 'adult contemporary', 'pop country', 'easy listening', 'piano', 'singer-songwriter', 'ballad 24126 country', 'memorial', 'singer-songwriter 24127 pop 24128 r&b', 'pop', 'dark pop', 'electro-pop', 'electro', 'cuba 24129 rap', 'trap 24130 pop', 'rap', 'producer', 'horrorcore', 'trap 24131 rap', 'trap', 'atlanta 24132 rap', 'trap', 'electronic', 'dance 24133 rap', 'hip-hop', 'hardcore hip-hop', 'conscious hip-hop 24134 rap', 'deutsche übersetzung 24135 country', 'pop', 'reality tv', 'acoustic 24136 pop', 'ballad 24137 rap', 'trap', 'beef 24138 country', 'acoustic 24139 rap', 'trap', 'hip-hop 24140 pop 24141 rock', 'pop', 'adult alternative', 'adult contemporary', 'indie', 'indie pop', 'indie rock', 'electro-funk', 'electronic rock', 'alternative', 'alternative dance', 'alternative rock', 'pop-rock', 'electro-pop', 'alternative pop 24142 pop 24143 pop 24144 pop', 'ballad', 'musicals', 'soundtrack 24145 pop', 'soundtrack', 'musicals 24146 pop', 'tradução em português 24147 r&b', 'pop', 'alternative r&b', 'electro-funk', 'electronic', 'funk 24148 pop', 'r&b', 'rap', 'hip-hop', 'marvel', 'soundtrack 24149 rap', 'emo trap', 'alternative r&b', 'emo rap', 'cloud rap', 'trap 24150 pop', 'electronic 24151 rap', 'cloud rap', 'trap 24152 country', 'pop', 'pop country', 'singer-songwriter 24153 rap', 'gangsta rap', 'new york', 'remix', 'hardcore hip-hop', 'east coast', 'trap 24154 rap', 'trap 24155 pop', 'teen pop', 'dance-pop', 'dance', 'lgbtq+ 24156 country', 'ballad', 'singer-songwriter', 'pop country 24157 rap', 'alternative', 'trap', 'memes', 'soundtrack', 'marvel', 'west coast 24158 pop', 'electro', 'electronic', 'electro-pop', 'uk 24159 pop 24160 pop', 'rap', 'charity', 'hip-hop', 'trap', 'canada 24161 rap', 'beef', 'canada 24162 pop', 'r&b', 'synth-pop', 'electro-pop', 'electronic', 'instrumental hip-hop 24163 pop', 'dance-pop', 'alternative rock', 'alternative', 'piano', 'electro-pop', 'dance', 'electronic 24164 r&b', 'pop', 'alternative r&b', 'singer-songwriter', 'trap', 'electro-pop', 'electronic', 'funk 24165 rap', 'hip-hop', 'hardcore hip-hop', 'conscious hip-hop', 'trap 24166 rap', 'trap 24167 pop', 'country', 'pop country', 'bluegrass', 'contemporary folk', 'experimental folk', 'experimental pop', 'electro-pop', 'americana 24168 rap', 'posse cut', 'funk', 'atlanta', 'canada', 'trap 24169 pop', 'future bass', 'electro', 'dance-pop', 'edm', 'teen pop', 'deutschland', 'electro-pop', 'electronic', 'dance 24170 country', 'ballad', 'pop country 24171 rap', 'atlanta', 'motown', 'trap 24172 rap', 'posse cut', 'atlanta', 'motown', 'trap 24173 rap', 'posse cut', 'atlanta', 'east coast', 'motown', 'trap 24174 rap', 'atlanta', 'motown', 'trap 24175 rap', 'posse cut', 'atlanta', 'trap', 'motown 24176 r&b', 'rap', 'atlanta', 'motown 24177 rap', 'trap 24178 rap', 'atlanta', 'intro', 'trap 24179 rap', 'atlanta', 'motown', 'trap 24180 rap', 'atlanta', 'motown', 'trap 24181 r&b', 'latin pop', 'puerto rico', 'remix', 'latin urban', 'en español', 'latin music 24182 country', 'ballad', 'pop country 24183 rap', 'posse cut', 'atlanta', 'motown', 'trap 24184 r&b', 'rap', 'east coast', 'alternative r&b', 'marvel', 'canada', 'west coast', 'soundtrack 24185 pop', 'singer-songwriter', 'alternative pop', 'funk-pop', 'funk 24186 pop', 'rap', 'puerto rico', 'latin pop', 'latin urban', 'latin music', 'en español', 'reggaetón 24187 rap 24188 country', 'easy listening', 'adult contemporary', 'ballad', 'singer-songwriter 24189 country', 'chill', 'pop country', 'singer-songwriter 24190 country', 'pop country 24191 rap', 'canada', 'trap 24192 rap', 'isizulu', 'marvel', 'trap', 'south africa', 'soundtrack', 'west coast 24193 rap', 'trap 24194 rap', 'r&b', 'soundtrack 24195 rap', 'bay area', 'trap', 'west coast', 'soundtrack 24196 rap', 'marvel', 'soundtrack 24197 pop', 'pop-rock', 'edm', 'dance-pop', 'electro-pop', 'electronic', 'dance 24198 rap', 'conscious hip-hop', 'hip-hop', 'marvel', 'soundtrack', 'west coast 24199 pop', 'electronic 24200 r&b', 'soundtrack 24201 pop', 'r&b', 'indie pop', 'indie', 'alternative r&b', 'alternative pop', 'canada 24202 r&b', 'pop', 'rap', 'chill', 'trap 24203 rap', 'dmv', 'trap 24204 rap', 'east coast', 'beef', 'new york', 'hardcore hip-hop', 'trap', 'gangsta rap 24205 pop', 'teen pop', 'pop-rock', 'australia 24206 rap', 'new york', 'atlanta', 'hardcore hip-hop', 'canada', 'trap 24207 rap 24208 country 24209 country', 'pop country', 'ballad 24210 pop', 'r&b', 'lgbtq+', 'funk-pop', 'singer-songwriter', 'alternative r&b', 'electronic', 'funk 24211 pop', 'rap', 'florida rap', 'pop rap', 'cloud rap', 'emo pop', 'trap', 'emo rap 24212 rap', 'trap 24213 pop', 'rap', 'electronic trap', 'electro-pop', 'pop rap', 'edm', 'dmv', 'electronic', 'trap 24214 pop', 'blue-eyed soul', 'funk-pop', 'electronic', 'electro-pop', 'dance', 'dance-pop 24215 pop', 'florida rap', 'emo pop', 'ballad', 'piano', 'emo 24216 rap', 'memphis', 'trap 24217 pop', 'puerto rico', 'colombia', 'latin urban', 'afrobeats', 'dancehall', 'en español', 'reggaetón', 'latin pop', 'latin music 24218 r&b', 'rap', 'dmv', 'trap 24219 r&b', 'dmv 24220 rap', 'r&b', 'remix 24221 country', 'acoustic', 'ballad 24222 r&b', 'trap', 'neo soul 24223 rock', 'alternative metal', 'groove metal', 'metalcore', 'alternative rock', 'ireland', 'cover 24224 rap', 'dmv', 'trap 24225 rap', 'dmv', 'trap 24226 rap', 'atlanta', 'trap 24227 rap', 'dmv', 'trap 24228 rap', 'atlanta', 'trap 24229 rap', 'dmv', 'trap 24230 rap', 'dmv', 'trap 24231 pop', 'electro', 'house', 'adult contemporary', 'easy listening', 'dream pop', 'singer-songwriter', 'synth-pop', 'new wave', 'tropical house', 'electro-pop', 'electronic 24232 rap', 'dmv', 'beef', 'trap 24233 rap', 'atlanta', 'trap 24234 rap', 'dmv', 'trap 24235 rap', 'dmv', 'trap 24236 pop', 'rap', 'pop rap', 'memes', 'dmv', 'comedy 24237 rap', 'pop rap', 'florida rap', 'trap 24238 pop', 'broadway 24239 rap', 'florida rap', 'alternative', 'emo', 'emo rap 24240 rock', 'pop', 'mental health', 'adult alternative', 'producer', 'adult contemporary', 'ballad', 'pop-rock', 'canada 24241 rock', 'alternative', 'alternative rock', 'emo 24242 rap', 'русский перевод (russian translation) 24243 country', 'pop country', 'singer-songwriter 24244 rock', 'pop', 'alternative pop', 'adult contemporary', 'neo-psychedelia', 'adult alternative', 'pop-rock', 'alternative', 'alternative rock 24245 rap', 'florida rap', 'trap 24246 rap', 'pop', 'alternative pop', 'future bass', 'edm', 'hip-hop', 'house', 'electro-pop', 'electronic', 'dance 24247 pop', 'electro-pop', 'alternative', 'alternative pop', 'pop-rock 24248 pop 24249 rap', 'trap 24250 rock', 'country', 'pop country 24251 country 24252 pop', 'rock', 'dance rock', 'adult alternative', 'adult contemporary', 'synth-pop', 'alternative pop', 'alternative rock', 'dance-pop', 'dance', 'electro-pop', 'pop-rock', 'alternative 24253 pop', 'r&b', 'singer-songwriter', 'downtempo', 'canada', 'alternative r&b', 'ballad', 'dark pop 24254 r&b', 'pop', 'rap 24255 pop', 'r&b', 'electro-pop', 'alternative r&b 24256 pop', 'r&b', 'future garage', 'alternative r&b', 'electro-pop 24257 pop', 'r&b', 'future garage', 'electro-pop', 'alternative r&b 24258 r&b', 'traducción al español 24259 r&b', 'youtube 24260 pop', 'r&b', 'alternative r&b', 'ballad 24261 r&b', 'uk r&b', 'uk 24262 rap', 'hardcore hip-hop', 'west coast', 'trap 24263 country', 'pop', 'pop country 24264 country', 'singer-songwriter', 'feminism 24265 rap', 'west coast', 'motown', 'trap 24266 r&b 24267 rap', 'r&b', 'bounce', 'canada 24268 rap', 'puerto rico', 'colombia', 'trap', 'latin music', 'en español', 'latin trap 24269 rap', 'traducción al español 24270 rap', 'new york 24271 pop', 'rap', 'instrumental hip-hop 24272 rap', 'trap 24273 rap 24274 rap', 'trap', 'bounce 24275 pop', 'r&b', 'rap', 'new york 24276 rap', 'trap', 'west coast 24277 rap', 'new york', 'east coast', 'trap 24278 rap', 'trap 24279 pop', 'house', 'uk garage', 'funk-pop', 'electro house', 'tropical house', 'electronic', 'dance', 'uk', 'alternative dance', 'dance-pop', 'electro-pop 24280 rap', 'русский перевод (russian translation) 24281 rap', 'pop', 'east coast', 'trinidad & tobago', 'electronic trap', 'electronic', 'trap', 'dance', 'hyphy', 'clash 24282 country', 'pop country 24283 rap', 'east coast', 'hip-hop', 'trinidad & tobago 24284 pop', 'traduction française 24285 rap', 'florida rap', 'trap 24286 country', 'pop country', 'singer-songwriter 24287 r&b', 'pop', 'tropical house', 'uk r&b', 'uk', 'electronic', 'electro-pop 24288 pop', 'rap', 'afrobeats', 'dancehall 24289 rap', 'atlanta', 'trap 24290 rap', 'pop rap', 'alternative pop', 'chillhop', 'new york', 'soul', 'trap 24291 r&b', 'pop', 'uk garage', 'dance', 'electro-pop', 'synth-pop', 'dance-pop 24292 rap', 'trap 24293 rap 24294 rap', 'trap 24295 rap', 'trap 24296 rap', 'trap 24297 rap 24298 rap', 'lo-fi', 'jazz rap', 'boom bap 24299 rap', 'boom bap', 'jazz rap', 'conscious hip-hop 24300 rap', 'conscious hip-hop 24301 rap', 'jazz rap', 'boom bap 24302 rap', 'conscious hip-hop', 'interlude 24303 rap', 'jazz rap 24304 pop', 'r&b', 'trap', 'electro-pop', 'soul', 'west coast 24305 country', 'pop', 'ballad', 'singer-songwriter', 'pop country 24306 pop', 'latin pop', 'dancehall', 'latin urban', 'en español', 'remix', 'puerto rico', 'latin music 24307 pop', 'jamaica', 'panamá', 'en español', 'memes', 'reggaetón', 'latin music', 'latin pop 24308 country', 'reggae 24309 r&b', 'rap', 'trap 24310 rap', 'r&b', 'pop', 'trap', 'pop rap 24311 rap', 'pop 24312 rap', 'hip-hop', 'trap 24313 rap', 'pop', 'r&b', 'trap 24314 rap', 'r&b', 'pop', 'trinidad & tobago', 'new york', 'pop rap', 'trap 24315 country', 'pop country', 'singer-songwriter', 'folk', 'ballad', 'acoustic 24316 rap', 'west coast 24317 rap', 'trap 24318 rock', 'rap', 'pop', 'hard rock', 'pop-rock', 'alternative', 'rap rock', 'alternative rock 24319 rap', 'trap 24320 rap 24321 pop', 'rap', 'synth-pop', 'electro-pop 24322 rap', 'trap 24323 rap', 'trap 24324 pop', 'country', 'pop country 24325 rock', 'interlude', 'psychedelic', 'emo', 'alternative rock 24326 rap', 'trap 24327 rap', 'conscious hip-hop', 'hardcore hip-hop', 'trap 24328 rap', 'trap 24329 country', 'adult contemporary', 'pop country', 'easy listening', 'ballad', 'singer-songwriter 24330 rock', 'pop', 'adult alternative', 'alternative r&b', 'soul pop', 'pop-rock', 'alternative pop', 'alternative', 'canada 24331 pop', 'nu disco', 'dance-pop', 'dance', 'synth-pop', 'electro-pop', 'electronic 24332 rap', 'atlanta', 'trap 24333 country', 'soft rock', 'adult contemporary', 'piano', 'pop country', 'singer-songwriter', 'ballad 24334 rap', 'trap 24335 rap', 'atlanta', 'trap 24336 rap', 'atlanta', 'trap', 'canada 24337 pop', 'electronic', 'tropical house', 'ballad', 'electro-pop', 'dance-pop', 'soundtrack 24338 rap', 'chicago rap', 'emo rap', 'trap', 'emo trap 24339 pop', 'puerto rico', 'méxico', 'latin music', 'reggaetón', 'latin pop', 'en español 24340 rap', 'east coast', 'trap 24341 rap', 'chicago rap', 'emo rap', 'trap', 'emo trap', 'cloud rap 24342 pop', 'k-pop (케이팝)', 'south korea', 'boy band', 'korean', 'genius korea 24343 rap 24344 r&b', 'pop', 'korean', 'trap 24345 rap', 'dirty south', 'atlanta', 'trap', 'motown 24346 rap', 'motown', 'atlanta', 'trap 24347 rap 24348 pop', 'latin music', 'latin pop', 'en español 24349 rap', 'pop', 'florida rap', 'house', 'marvel', 'bassline', 'electronic', 'trap', 'soundtrack', 'dance 24350 rap', 'trap', 'canada 24351 r&b', 'country', 'alternative country', 'alternative r&b', 'singer-songwriter 24352 pop', 'teen pop', 'synth-pop', 'electro', 'electronic', 'electro-pop', 'boy band 24353 rap', 'trap', 'canada 24354 rap', 'hip-hop', 'east coast', 'trap', 'uk rap', 'uk 24355 rap', 'gangsta rap', 'new york', 'trap', 'beef', 'hardcore hip-hop', 'east coast 24356 rap', 'neo soul', 'experimental hip-hop', 'hardcore hip-hop', 'east coast', 'beef 24357 rap', 'west coast', 'trap 24358 rap', 'gangsta rap', 'east coast 24359 rap', 'east coast', 'hardcore hip-hop', 'trap 24360 rap', 'pop', 'east coast', 'latin trap', 'latin pop', 'en español 24361 rap', 'tropical house', 'atlanta', 'trap', 'west coast 24362 pop', 'chamber pop', 'baroque pop', 'chamber music', 'alternative pop', 'soul', 'ballad 24363 rock', 'country', 'pop country 24364 pop', 'pop-rock', 'adult alternative', 'alternative pop 24365 rap', 'boom bap', 'gangsta rap', 'east coast 24366 rap', 'experimental', 'trap 24367 r&b', 'pop', 'rap', 'trap', 'experimental 24368 rap', 'canada', 'alternative rock', 'experimental 24369 r&b', 'pop', 'rap', 'art pop', 'conscious hip-hop', 'gospel', 'neo soul 24370 rap', 'art pop', 'downtempo', 'gospel', 'conscious hip-hop', 'neo soul', 'pop rap 24371 rap', 'trap', 'experimental hip-hop', 'spoken word', 'conscious hip-hop', 'experimental', 'confessional poetry', 'contemporary poetry 24372 r&b', 'pop', 'rap', 'neo soul 24373 country', 'singer-songwriter', 'pop country 24374 country', 'pop country', 'singer-songwriter 24375 pop', 'adult alternative', 'electro-pop 24376 rock', 'memes', 'alternative', 'synth rock', 'adult contemporary', 'cover', 'pop-rock', 'adult alternative', 'alternative rock 24377 pop', 'rock', 'teen pop', 'synth-pop', 'alternative pop', 'australia', 'pop-rock 24378 pop', 'dominican republic', 'reggaetón', 'latin music', 'latin pop', 'en español 24379 pop', 'rap', 'neo-psychedelia', 'cloud rap', 'art pop', 'trip-hop', 'alternative r&b', 'conscious hip-hop 24380 rap', 'experimental hip-hop', 'hardcore hip-hop 24381 rap', 'gangsta rap', 'boom bap', 'experimental hip-hop 24382 rock', 'rap', 'psychedelic', 'conscious hip-hop', 'gospel', 'psychedelic rock', 'rap rock 24383 rock', 'rap', 'boom bap', 'alternative', 'alternative rock', 'psychedelic rock', 'experimental hip-hop', 'rap rock 24384 rock', 'rap', 'rap rock', 'experimental hip-hop', 'conscious hip-hop 24385 r&b', 'rap', 'tribal', 'neo-psychedelia', 'alternative r&b', 'cloud rap', 'conscious hip-hop', 'experimental hip-hop 24386 country 24387 rap', 'deutsche übersetzung 24388 rap', 'east coast', 'pop rap', 'trap 24389 pop', 'deutsche übersetzung 24390 pop', 'electro-pop', 'edm', 'electronic', 'k-pop (케이팝)', 'south korea', 'girl group', 'korean', 'genius korea 24391 rock', 'pop', 'electronic rock', 'alternative rock', 'alternative pop', 'alternative', 'electro-pop', 'pop-rock', 'electronic 24392 r&b', 'rap 24393 pop', 'future bass', 'edm', 'electronic', 'dance 24394 rap', 'memorial', 'florida rap', 'conscious hip-hop', 'lo-fi', 'emo rap', 'trap 24395 r&b', 'rap 24396 country', 'honky tonk', 'ballad 24397 rap 24398 r&b', 'rap', 'trap 24399 pop', 'adult contemporary', 'piano', 'ballad 24400 rap', 'chicago rap', 'emo rap', 'trap', 'emo', 'emo trap', 'memorial 24401 pop', 'country', 'pop country', 'australia', 'singer-songwriter', 'alternative country', 'electro-pop', 'electronic 24402 pop', 'country', 'singer-songwriter', 'pop country 24403 r&b', 'rap', 'pop', 'bounce', 'pop rap', 'electro-pop', 'trinidad & tobago', 'dance-pop', 'trap 24404 pop', 'nederlandse vertaling 24405 rap', 'memes', 'trap', 'canada 24406 pop', 'r&b', 'rap', 'pop rap', 'memes', 'bounce', 'trap', 'canada 24407 rap', 'beef', 'trap', 'canada 24408 pop', 'r&b', 'rap', 'canada 24409 rap', 'trap', 'canada 24410 rap', 'trap', 'canada 24411 rap', 'intro', 'canada 24412 rap', 'trap', 'canada 24413 rap', 'trap', 'canada 24414 rap', 'canada 24415 rap', 'canada 24416 r&b', 'rap', 'canada 24417 rap', 'trap', 'canada 24418 r&b', 'rap', 'trap', 'canada 24419 rap', 'canada 24420 r&b', 'rap', 'canada 24421 r&b', 'rap', 'canada 24422 r&b', 'rap', 'canada 24423 r&b', 'rap', 'canada 24424 r&b', 'rap', 'canada 24425 r&b', 'rap', 'interlude', 'canada 24426 r&b', 'rap', 'outro', 'canada 24427 r&b', 'youtube 24428 country', 'australia', 'singer-songwriter', 'pop country 24429 country', 'pop country 24430 country 24431 pop', 'teen pop', 'canada 24432 rap', 'atlanta', 'trap 24433 pop', 'rock', 'industrial rock', 'industrial metal', 'indie', 'indie rock', 'alternative metal', 'alternative', 'nu-metal', 'metal', 'alternative pop', 'alternative rock', 'pop-rock 24434 rap', 'atlanta', 'trap 24435 rap', 'atlanta', 'trap 24436 rap', 'east coast', 'trap 24437 rap', 'atlanta', 'trap 24438 r&b', 'rap', 'east coast 24439 rap', 'florida rap', 'trap 24440 rap', 'pop', 'pop rap', 'electro-pop', 'electronic', 'dance', 'remix 24441 rap', 'west coast', 'hip-hop', 'aussie hip-hop', 'australia 24442 r&b', 'pop', 'alternative r&b', 'electro-pop', 'trap 24443 pop', 'r&b', 'electro-pop', 'soul pop', 'tropical house', 'alternative r&b', 'soul', 'bounce 24444 pop', 'piano', 'ballad', 'singer-songwriter', 'worship', 'christian pop', 'christian 24445 r&b', 'pop 24446 rap 24447 country 24448 r&b', 'rap 24449 rap', 'trap 24450 rock', 'pop', 'psychedelic', 'indie pop', 'indie', 'indie rock', 'trip-hop', 'pop-rock', 'alternative rock', 'reggae', 'reggae rock', 'emo rap', 'emo', 'alternative pop', 'alternative 24451 pop', 'rock', 'indie', 'alternative pop', 'alternative', 'indie pop', 'adult alternative', 'alternative rock', 'pop-rock', 'indie rock 24452 country 24453 r&b 24454 rap', 'west coast', 'memphis', 'trap 24455 pop', 'teen pop', 'synth-pop 24456 pop', 'scandinavia', 'dance-pop', 'electronic', 'tropical house', 'dance 24457 rap', 'deutsche übersetzung 24458 rock', 'pop', 'soundtrack', 'alternative', 'adult alternative', 'alternative rock', 'pop-rock 24459 rap 24460 r&b', 'pop', 'singer-songwriter', 'dance', 'electronic 24461 r&b', 'canada 24462 pop', 'r&b', 'israeli music', 'alternative r&b', 'adult alternative', 'indie pop', 'alternative dance', 'dance', 'dance-pop', 'alternative pop', 'electronic 24463 pop', 'industrial rock', 'reggae', 'industrial', 'trap', 'dark pop', 'alternative pop', 'alternative', 'electro-pop 24464 r&b', 'pop', 'rap 24465 pop', 'rap', 'dmv 24466 pop', 'nu disco', 'future bass', 'dance-pop', 'dance 24467 rap 24468 rap', 'trap', 'west coast 24469 country', 'singer-songwriter 24470 rap', 'canada', 'experimental hip-hop', 'experimental', 'trap 24471 rap', 'cloud rap', 'psychedelic', 'trap 24472 rap', 'west coast', 'trap 24473 rap', 'cloud rap', 'atlanta', 'canada', 'memes', 'trap 24474 rap', 'alternative r&b', 'cloud rap', 'trap 24475 rap', 'indie rap', 'alternative', 'cloud rap', 'trap 24476 r&b', 'rap', 'neo-psychedelia', 'alternative r&b', 'trap', 'canada 24477 rap', 'trap 24478 rap', 'piano', 'trap 24479 rap', 'drill', 'trap 24480 rap', 'trap 24481 rap', 'trap 24482 pop', 'rap', 'cloud rap', 'psychedelic 24483 rap', 'psychedelic', 'trap', 'cloud rap 24484 rap', 'trap 24485 pop', 'dance', 'remix 24486 r&b', 'rap', 'boom bap', 'hip-hop', 'cloud rap 24487 r&b 24488 r&b', 'uk r&b', 'uk 24489 rap', 'chicago rap', 'emo rap', 'trap', 'emo trap 24490 rap', 'boom bap', 'east coast', 'trinidad & tobago', 'diss track 24491 rap', 'cloud rap', 'trap 24492 rap', 'türkçe çeviri 24493 rap', 'boom bap', 'freestyle', 'east coast 24494 rock', 'pop', 'singer-songwriter', 'adult contemporary', 'adult alternative', 'pop-rock 24495 r&b', 'pop', 'rap 24496 country', 'pop country', 'singer-songwriter 24497 r&b', 'pop', 'rap', 'trap', 'canada 24498 r&b', 'pop', 'ballad', 'singer-songwriter', 'electro-pop', 'mental health', 'synth-pop', 'dance-pop 24499 r&b', 'pop', 'alternative r&b', 'pop rap', 'synth-pop', 'soul pop', 'trap 24500 r&b', 'pop', 'electro-pop', 'adult contemporary', 'trap 24501 pop', 'dance-pop', 'adult alternative', 'alternative dance', 'alternative pop', 'alternative rock', 'adult contemporary', 'electro-pop', 'future bass', 'electronic', 'dance 24502 pop', 'dance 24503 r&b', 'pop', 'neo soul', 'soul pop', 'electro-pop', 'adult contemporary', 'alternative r&b', 'alternative pop 24504 country 24505 rap', 'atlanta', 'trap 24506 r&b', 'pop', 'singer-songwriter', 'dream pop', 'alternative r&b', 'edm', 'trap', 'future bass', 'electronic', 'ballad', 'electro-pop 24507 pop', 'r&b', 'singer-songwriter', 'puerto rico', 'afrobeats', 'latin pop', 'dancehall', 'dance 24508 r&b', 'pop', 'orchestral', 'ballad', 'pop rap', 'trap', 'alternative r&b 24509 rap', 'pop', 'english translation', 'korean', 'boy band', 'genius korea 24510 rap 24511 pop', 'puerto rico', 'latin urban', 'reggaetón', 'latin pop', 'latin music', 'en español 24512 rap', 'nba', 'east coast', 'memes', 'basketball', 'trap 24513 rap 24514 country', 'singer-songwriter 24515 r&b', 'pop', 'electronic rock', 'synth-pop', 'electro-pop', 'pop-rock 24516 pop', 'electro', 'dance', 'electronic', 'electro-pop', 'deutschland 24517 rap 24518 rap', 'detroit', 'hip-hop', 'hardcore hip-hop', 'beef 24519 rap', 'detroit', 'hardcore hip-hop', 'beef', 'trap', 'hip-hop 24520 rap', 'beef', 'hip-hop', 'hardcore hip-hop 24521 rap', 'beef', 'hip-hop', 'hardcore hip-hop', 'rap rock 24522 rap', 'translation', 'beef', 'turkey 24523 pop', 'rap', 'english translation 24524 rap', 'detroit', 'hardcore hip-hop', 'hip-hop', 'trap 24525 rap', 'hip-hop', 'hardcore hip-hop 24526 rap', 'detroit', 'marvel', 'hip-hop', 'soundtrack 24527 pop', 'r&b', 'art pop', 'funk', 'neo soul', 'alternative r&b', 'tropical house', 'soul 24528 pop', 'rap', 'hip-hop', 'canada 24529 rap', 'türkçe çeviri 24530 pop', 'australia', 'uk', 'adult alternative', 'alternative pop', 'downtempo', 'dance 24531 country', 'pop country', 'singer-songwriter 24532 rap', 'florida rap', 'memes 24533 rap', 'hip-hop', 'diss track', 'trap', 'beef 24534 r&b', 'rap', 'trap', 'neo soul 24535 rap', 'neo soul', 'psychedelic', 'trap', 'jazz rap 24536 rap', 'conscious hip-hop 24537 pop', 'country', 'ballad', 'adult contemporary', 'singer-songwriter', 'pop country 24538 pop 24539 rap', 'diss track', 'trap', 'hardcore hip-hop', 'beef 24540 rap', 'atlanta', 'trap 24541 rap', 'trap 24542 pop', 'r&b', 'electro-pop 24543 rock', 'pop', 'alternative rock', 'alternative', 'pop-rock', 'alternative pop', 'emo 24544 r&b', 'rap', 'alternative r&b', 'alternative', 'atlanta 24545 rap', 'east coast', 'pop rap', 'trap', 'new york', 'plugg 24546 country', 'ballad', 'singer-songwriter', 'pop country 24547 rap', 'trap 24548 rap', 'trap', 'canada 24549 pop', 'piano', 'ballad', 'canada', 'christian rock', 'gospel', 'christian', 'pop-rock 24550 pop', 'teen pop', 'edm', 'bass music', 'electro', 'electro-pop', 'future bass', 'electronic', 'dance 24551 rap 24552 country 24553 rap', 'west coast 24554 rap 24555 rap', 'trap 24556 rap', 'trap 24557 rap 24558 r&b', 'rap', 'alternative r&b 24559 r&b', 'rap', 'trap', 'alternative r&b 24560 rock', 'piano', 'folk rock', 'ballad', 'musicals', 'soundtrack 24561 rap', 'hip-hop 24562 pop', 'list', 'meta 24563 rap 24564 rap', 'florida rap', 'trap 24565 rap', 'trap 24566 rap', 'east coast 24567 rap', 'west coast', 'east coast 24568 rap', 'religion', 'trap', 'east coast 24569 rap', 'trap', 'east coast 24570 rap', 'neo soul', 'soul', 'christian', 'conscious hip-hop', 'trap', 'uk 24571 rap 24572 rap', 'trap', 'east coast 24573 rap', 'trap', 'east coast 24574 r&b', 'rap', 'east coast 24575 rap', 'east coast 24576 rap', 'canada', 'atlanta', 'motown', 'trap 24577 r&b', 'pop', 'electronic trap', 'electro-pop', 'electronic', 'trap', 'synth-pop', 'alternative pop', 'ballad 24578 rap', 'florida rap', 'gangsta rap', 'new york', 'hardcore hip-hop', 'trap 24579 r&b', 'rap', 'atlanta', 'trap 24580 pop', 'orchestral', 'ballad', 'musicals', 'soundtrack 24581 pop', 'musicals', 'soundtrack 24582 rap', 'atlanta', 'motown', 'trap 24583 rap', 'atlanta', 'motown', 'trap 24584 pop', 'musicals', 'soundtrack 24585 rap', 'atlanta', 'trap', 'motown 24586 rock', 'pop', 'nu disco', 'alternative dance', 'synth-pop', 'electronic rock', 'electro-pop', 'electronic', 'pop-punk', 'pop-rock', 'punk rock', 'alternative pop', 'alternative', 'alternative rock 24587 country', 'pop', 'soundtrack 24588 rap', 'atlanta', 'motown', 'trap 24589 rap', 'atlanta', 'motown', 'trap 24590 pop', 'jamaica', 'remix', 'en español', 'dancehall 24591 rap', 'trap 24592 rap', 'trap 24593 rap', 'intro', 'motown', 'trap 24594 rap', 'cloud rap', 'trap 24595 rap', 'trap 24596 rap', 'trap 24597 rap', 'dirty south', 'atlanta', 'trap 24598 rap', 'east coast', 'trap 24599 r&b', 'pop', 'dark pop', 'alternative pop', 'piano', 'ambient', 'ballad 24600 rap', 'dirty south', 'atlanta', 'trap 24601 rap', 'dirty south', 'atlanta', 'trap 24602 pop', 'r&b', 'dance-pop', 'en español 24603 r&b 24604 rap', 'atlanta', 'trap 24605 rap', 'trap 24606 pop', 'edm', 'tropical house', 'reggaetón', 'dance', 'electronic', 'dance-pop', 'electro-pop', 'korean', 'uk', 'genius korea 24607 rap', 'atlanta', 'trap 24608 country', 'ballad 24609 r&b', 'pop', 'rap', 'colombia', 'florida rap', 'pop rap', 'dancehall', 'east coast', 'dance', 'latin music', 'en español 24610 rap', 'motown', 'trap 24611 rap', 'atlanta', 'dancehall', 'trap', 'canada 24612 rap', 'emo rap', 'trap', 'producer 24613 rap', 'hip-hop', 'east coast', 'trinidad & tobago', 'west coast 24614 pop', 'electro-pop', 'genius korea', 'boy band', 'south korea', 'dance 24615 pop', 'musicals', 'soundtrack', 'cover 24616 pop', 'adult alternative', 'piano', 'adult contemporary', 'ballad', 'alternative pop', 'alternative', 'australia 24617 rap', 'trap 24618 r&b', 'pop', 'synth-pop', 'electro-pop', 'dance-pop 24619 rap', 'atlanta', 'gangsta rap', 'trap 24620 rap', 'atlanta', 'trap 24621 rap', 'psychedelic', 'atlanta', 'trap 24622 rap', 'trap 24623 rap', 'atlanta', 'trap 24624 rap', 'atlanta', 'trap 24625 pop', 'puerto rico', 'dancehall', 'latin urban', 'latin trap', 'latin pop', 'latin music', 'en español 24626 pop', 'ballad', 'piano', 'cuba 24627 rap', 'trap 24628 rap', 'atlanta', 'trap 24629 rap', 'trap 24630 rap', 'trap 24631 rap', 'freestyle', 'trap 24632 r&b', 'rap', 'emo rap', 'trap 24633 pop', 'synthwave', 'electro-pop', 'ballad', 'alternative', 'alternative pop 24634 rap', 'trap 24635 pop', 'country', 'ballad', 'singer-songwriter', 'pop country 24636 pop', 'country', 'pop country', 'chill 24637 country 24638 country 24639 r&b', 'alternative r&b', 'emo', 'emo rap 24640 rap 24641 rap', 'bounce', 'east coast', 'motown', 'trap 24642 r&b', 'pop', 'dream pop', 'alternative', 'synth-pop', 'ambient', 'alternative pop 24643 rap', 'pop', 'electronic trap', 'dance-pop', 'trap', 'electronic', 'dance', 'electro', 'electro-pop 24644 country', 'dark pop', 'pop country 24645 pop', 'electro-pop', 'alternative pop', 'alternative 24646 rap', 'trinidad & tobago', 'motown', 'trap 24647 rap', 'trap', 'canada', 'east coast 24648 rap', 'atlanta', 'trap', 'motown 24649 pop', 'christmas', 'ballad', 'alternative pop', 'alternative 24650 rap', 'trap 24651 r&b', 'rap', 'alternative r&b 24652 rap', 'trap', 'east coast', 'canada 24653 rap', 'east coast 24654 rap', 'east coast 24655 country', 'christmas 24656 rap', 'trap', 'puerto rico', 'east coast', 'latin urban', 'en español', 'latin music', 'latin trap 24657 pop', 'retro', 'christmas 24658 rap', 'atlanta', 'motown', 'trap 24659 r&b', 'rap', 'uk r&b', 'east coast', 'uk 24660 rap', 'intro', 'east coast 24661 rap', 'east coast 24662 rap', 'tradução em português 24663 rap 24664 rap', 'atlanta', 'motown', 'trap 24665 rap', 'chicago rap', 'metal', 'hardcore', 'florida rap', 'trap metal', 'dirty south', 'east coast', 'hardcore hip-hop', 'trap 24666 rap', 'trap 24667 rap', 'atlanta', 'trap 24668 pop', 'nu disco', 'adult contemporary', 'dance-pop', 'pop country 24669 rap', 'east coast 24670 rap', 'trap', 'east coast 24671 r&b', 'rap', 'east coast 24672 rap', 'atlanta', 'trap', 'east coast 24673 rap', 'trap', 'east coast 24674 rap', 'florida rap', 'trap 24675 rap', 'atlanta', 'motown', 'trap 24676 rap', 'east coast 24677 rap', 'atlanta', 'motown', 'trap 24678 rap', 'atlanta', 'motown', 'trap 24679 r&b', 'pop', 'emo pop', 'alternative r&b', 'ambient', 'alternative', 'alternative pop', 'emo', 'emo trap', 'trap', 'chillstep 24680 pop 24681 pop', 'christmas 24682 rap', 'emo', 'cloud rap', 'alternative', 'emo rap', 'lo-fi 24683 rap', 'trap 24684 rock', 'traducción al español 24685 rap', 'short story', 'emo rap', 'emo', 'piano 24686 pop', 'r&b', 'acoustic 24687 rock', 'alternative metal', 'metal', 'screamo', 'alternative rock 24688 pop', 'r&b', 'interlude', 'acoustic 24689 pop', 'rap 24690 country', 'singer-songwriter 24691 r&b', 'pop', 'soul pop', 'downtempo', 'alternative r&b', 'trap', 'ballad 24692 pop 24693 pop', 'christmas 24694 rock', 'gospel', 'british rock', 'uk', 'seventies', 'singer-songwriter', 'protest songs', 'holiday', 'christmas 24695 pop', 'rock', 'new wave', 'synth-pop', 'seventies', 'british rock', 'uk', 'singer-songwriter', 'pop-rock', 'christmas', 'holiday 24696 pop', 'r&b', 'christmas 24697 rap', 'trap 24698 pop', 'christmas', 'holiday 24699 rap', 'hip-hop', 'florida rap', 'intro', 'trap', 'cloud rap', 'conscious hip-hop 24700 r&b', 'pop', 'dance-pop', 'dance', 'electro', 'electronic', 'electro-pop', 'uk 24701 rap', 'florida rap', 'trap 24702 pop', 'christian pop', 'christmas', 'cover', 'christian 24703 rap', 'trap 24704 rap', 'atlanta', 'east coast', 'trap 24705 r&b', 'country', 'rock', 'holiday', 'retro', 'cover', 'pop country', 'christmas 24706 r&b', 'rap', 'trap 24707 pop', 'holiday', 'christmas 24708 r&b', 'rap', 'trap 24709 rap', 'atlanta', 'trap 24710 rap', 'motown', 'trap 24711 rap', 'atlanta', 'trap 24712 rap', 'atlanta', 'trap 24713 rap', 'atlanta', 'trap 24714 rap', 'atlanta', 'motown', 'trap 24715 rap', 'atlanta', 'trap 24716 rap', 'atlanta', 'trap 24717 r&b', 'rap', 'trap 24718 rap', 'atlanta', 'trap 24719 pop', 'memes', "children's music 24720 country', 'pop country', 'singer-songwriter 24721 country', 'singer-songwriter', 'pop country 24722 country 24723 pop', 'piano', 'adult contemporary', 'pop-rock', 'ballad', 'danmark', 'scandinavia 24724 country', 'protest songs', 'singer-songwriter', 'pop country 24725 r&b', 'pop', 'scandipop', 'dance', 'dance-pop', 'sverige', 'scandinavia', 'synth-pop 24726 pop', 'canada 24727 country', 'adult contemporary', 'pop country', 'singer-songwriter 24728 country', 'singer-songwriter', 'honky tonk 24729 rap', 'latin trap', 'reggaetón', 'puerto rico', 'dancehall', 'latin urban', 'latin music', 'en español 24730 pop', 'rap', 'emo rap', 'pop-punk 24731 country 24732 r&b', 'pop', 'neo soul', 'dark pop', 'alternative pop 24733 pop', 'r&b', 'dmv', 'tropical house 24734 rap', 'atlanta', 'trap 24735 rap', 'florida rap', 'trap 24736 rap 24737 pop', 'r&b', 'alternative r&b', 'synth-pop', 'dark pop', 'electronic', 'beef', 'france', 'canada', 'electro-pop 24738 r&b', 'pop', 'lgbtq+', 'easy listening', 'singer-songwriter', 'ballad', 'blue-eyed soul', 'alternative r&b', 'alternative pop', 'soul pop', 'soul', 'adult contemporary', 'nu disco', 'dance-pop', 'uk 24739 r&b', 'bay area', 'west coast 24740 rap', 'trap', 'memes', 'west coast 24741 pop', 'remix 24742 rap', 'atlanta', 'trap 24743 rap', 'trap 24744 rap', 'r&b', 'pop', 'trip-hop', 'pop rap', 'trap 24745 rap', 'conscious hip-hop', 'trap 24746 rap', 'dmv', 'east coast 24747 rap', 'atlanta', 'trap 24748 rap', 'intro', 'atlanta', 'trap 24749 pop', 'latin pop', 'colombia', 'puerto rico', 'reggaetón', 'en español', 'latin music', 'latin urban 24750 rap', 'tradução em português', 'em português', 'brasil 24751 rap', 'atlanta', 'trap 24752 rap', 'atlanta', 'trap 24753 rap', 'atlanta', 'trap', 'west coast', 'motown 24754 rap', 'atlanta', 'trap 24755 rock', 'country', 'soft rock', 'pop country', 'easy listening', 'adult contemporary', 'ballad 24756 r&b', 'rap', 'gangsta rap', 'florida rap', 'trap 24757 pop', 'country', 'feminism', 'singer-songwriter', 'pop country 24758 pop', 'lgbtq+', 'video game', 'edm', 'future bass', 'disney', 'electronic', 'gaming', 'japanese', 'soundtrack', 'japan', 'j-pop 24759 rap', 'atlanta', 'trap 24760 rap', 'memphis', 'atlanta', 'trap 24761 pop', 'industrial', 'synth-pop', 'electro-pop', 'trap', 'alternative', 'dark pop', 'alternative pop', 'electronica 24762 pop 24763 r&b', 'uk r&b', 'uk 24764 rap', 'cloud rap', 'remix', 'trap 24765 pop', 'traducción al español 24766 country', 'americana', 'honky tonk 24767 rap', 'atlanta', 'cloud rap', 'trap 24768 country', 'pop country', 'feminism', 'singer-songwriter 24769 r&b', 'pop', 'trap 24770 r&b', 'pop', 'easy listening', 'soul', 'soul pop', 'orchestral', 'ballad 24771 r&b', 'pop', 'dance-pop', 'electro-pop 24772 r&b', 'pop', 'electronic trap', 'trap', 'electronic', 'electro-pop', 'dancehall', 'dance-pop 24773 r&b', 'pop', 'chamber pop', 'art pop', 'soul pop', 'alternative r&b', 'ballad 24774 r&b', 'pop', 'trap', 'electronic', 'electro-pop 24775 r&b', 'pop', 'dance-pop', 'dance', 'trap 24776 r&b', 'pop', 'pop rap', 'alternative r&b', 'trap 24777 r&b', 'pop', 'neo soul', 'soul pop', 'synth-pop 24778 r&b', 'pop', 'electro-pop', 'synth-pop', 'trap 24779 pop', 'future bass', 'dance-pop', 'dance', 'australia 24780 pop', 'singer-songwriter', 'piano', 'ballad 24781 rap', 'r&b', 'pop', 'east coast', 'west coast', 'soul pop 24782 rap', 'chicago rap', 'emo rap', 'trap', 'emo trap 24783 rap', 'atlanta', 'trap', 'motown 24784 country 24785 country', 'ballad', 'pop country 24786 pop', 'west coast', 'dance-pop', 'electro', 'electro-pop', 'electronic', 'dance 24787 r&b', 'east coast 24788 country', 'pop country', 'singer-songwriter 24789 country', 'pop country 24790 rap', 'trap', 'atlanta', 'motown 24791 pop', 'easy listening', 'singer-songwriter', 'adult contemporary', 'ballad 24792 rap', 'atlanta', 'trap', 'east coast 24793 rap', 'atlanta', 'trap', 'east coast', 'motown 24794 rap', 'atlanta', 'trap 24795 rap', 'memes', 'florida rap', 'trap 24796 rap', 'atlanta', 'trap 24797 rap', 'atlanta', 'cloud rap', 'trap 24798 rap', 'motown 24799 rap', 'cloud rap', 'atlanta', 'trap 24800 rock', 'country', 'ballad', 'adult contemporary', 'alternative country', 'alternative rock', 'pop-rock', 'chill', 'adult alternative', 'blues rock', 'blues', 'singer-songwriter', 'heartland rock 24801 country', 'chill', 'singer-songwriter', 'adult contemporary', 'easy listening', 'ballad 24802 rap 24803 rap', 'florida rap', 'trap 24804 pop', 'alternative pop', 'boy band', 'teen pop', 'pop-rock 24805 rap', 'emo trap', 'emo rap', 'trap 24806 country', 'pop country', 'singer-songwriter 24807 pop', 'chicago rap', 'trap', 'dancehall', 'afrobeats 24808 pop', 'dark pop', 'acoustic', 'alternative', 'alternative pop 24809 rap', 'trap 24810 rap', 'memes', 'trap', 'east coast 24811 country 24812 country', 'honky tonk', 'pop country 24813 pop', 'teen pop', 'colombia', 'electro', 'electro-pop', 'electronic', 'reggaetón', 'en español', 'latin urban', 'latin music', 'latin pop 24814 r&b', 'rap 24815 rap', 'trap', 'west coast 24816 r&b', 'rap', 'alternative r&b', 'emo', 'chicago rap', 'emo rap', 'trap', 'emo trap 24817 rap', 'chicago rap', 'cloud rap', 'emo rap', 'emo trap 24818 rap', 'chicago rap', 'trap', 'emo rap', 'emo trap 24819 pop', 'uk', 'soundtrack', 'progressive house', 'house', 'electro house', 'alternative pop', 'electronic', 'dubstep', 'dance', 'electro', 'electronica', 'electro-pop', 'edm', 'synth-pop 24820 r&b 24821 pop', 'synth-pop 24822 country', 'dark pop', 'pop country 24823 rock', 'rap', 'chicago rap', 'alternative rock', 'rap rock', 'trap', 'emo rap', 'emo trap 24824 pop', 'pop-rock', 'alternative pop', 'pop-punk', 'alternative', 'alternative rock 24825 rap', 'gangsta rap', 'trap', 'west coast 24826 rap', 'dance', 'aussie hip-hop', 'australia', 'trap 24827 pop', 'r&b', 'alternative r&b', 'soul', 'soul pop', 'lo-fi', 'ballad 24828 r&b', 'rap', 'hip-hop', 'soundtrack', 'netflix', 'cloud rap', 'trap', 'canada 24829 rap', 'boom bap', 'dmv', 'east coast 24830 rap', 'trap', 'canada', 'east coast 24831 rap', 'new york', 'chicago rap', 'pop rap', 'piano', 'hip-hop', 'trap 24832 r&b', 'pop', 'teen pop', 'uk 24833 pop', 'lgbtq+ 24834 pop', 'electronic', 'dark pop', 'alternative pop', 'dance-pop', 'electro-pop', 'electro 24835 pop', 'dark pop 24836 pop', 'dark pop', 'alternative pop', 'alternative 24837 rap 24838 r&b', 'pop', 'alternative r&b', 'dark pop', 'climate change', 'protest songs', 'alternative pop', 'alternative', 'soul pop', 'electro-pop', 'electronic 24839 r&b', 'pop', 'dark pop', 'alternative', 'alternative pop', 'ballad', 'acoustic 24840 rock', 'country 24841 pop', 'dark pop', 'chillhop', 'alternative pop', 'dance-pop 24842 pop', 'dark pop', 'piano', 'soul pop', 'ballad', 'bedroom pop', 'alternative', 'alternative pop 24843 rap', 'west coast 24844 rap', 'r&b', 'pop 24845 pop', 'dark pop', 'acoustic', 'alternative', 'alternative pop 24846 rap', 'gangsta rap', 'hyphy', 'trap', 'west coast 24847 rap', 'trap', 'east coast 24848 rap', 'gangsta rap', 'conscious hip-hop', 'west coast 24849 pop', 'singer-songwriter', 'teen pop', 'pop-rock 24850 rap', 'pop', 'edm', 'electronic', 'k-pop (케이팝)', 'south korea', 'trap', 'dance', 'girl group', 'korean', 'genius korea 24851 r&b', 'pop 24852 rap', 'r&b', 'remix 24853 pop', 'dominican republic', 'latin music', 'en español', 'bachata 24854 r&b', 'rap', 'dirty south 24855 rap', 'west coast 24856 rap', 'trap 24857 rock 24858 rap', 'east coast', 'trap 24859 country', 'pop country 24860 pop', 'english translation 24861 pop', 'alternative', 'alternative pop', 'electro-pop 24862 r&b', 'pop', 'rap', 'pop rap', 'politics', 'memes', 'charity', 'conscious hip-hop', 'comedy', 'satire', 'climate change 24863 pop', 'r&b', 'bounce', 'cover', 'soundtrack', 'soul pop', 'soul', 'funk 24864 rap', 'new york', 'trap', 'east coast', 'west coast 24865 country', 'pop country', 'singer-songwriter 24866 rap', 'memphis', 'trap 24867 rap', 'gangsta rap', 'trap', 'west coast 24868 rap', 'west coast', 'trap 24869 rap', 'electronic trap', 'dmv', 'trap', 'west coast', 'electro house', 'electro 24870 rap', 'pop', 'trap', 'pop rap', 'alternative pop', 'alternative', 'canada', 'soundtrack 24871 country', 'pop country', 'honky tonk 24872 pop 24873 rap', 'remix', 'trap', 'gangsta rap', 'beef', 'west coast 24874 pop', 'adult contemporary', 'pop-rock', 'canada', 'teen pop 24875 rap 24876 pop', 'rap', 'hip-hop', 'piano', 'netflix 24877 rock', 'country', 'singer-songwriter', 'pop country 24878 rap', 'trap', 'puerto rico', 'west coast 24879 rap', 'pop rap', 'florida rap', 'trap 24880 country', 'singer-songwriter', 'pop country 24881 rap', 'r&b', 'pop', 'singer-songwriter', 'ballad 24882 rap', 'west coast', 'trap 24883 pop', 'easy listening', 'tropical house', 'teen pop', 'chill', 'dancehall', 'adult contemporary', 'electro-pop', 'canada', 'uk', 'dance', 'dance-pop 24884 r&b', 'freestyle', 'west coast 24885 pop', 'remix', 'reggaetón', 'latin music', 'latin urban', 'puerto rico', 'latin pop', 'en español 24886 pop', 'adult contemporary', 'adult alternative', 'singer-songwriter', 'ballad', 'piano', 'uk 24887 r&b', 'feminism', 'electro-funk', 'funk-pop', 'funk', 'dance', 'dance-pop', 'alternative pop', 'synth-pop 24888 rap', 'pop', 'r&b', 'atlanta', 'alternative', 'soul rap', 'soul pop', 'soul', 'synth-pop', 'alternative pop', 'alternative r&b', 'neo soul 24889 rock', 'pop', 'alternative rock', 'alternative pop', 'alternative', 'pop-punk 24890 rap', 'atlanta', 'trap 24891 rap', 'r&b', 'soul', 'neo soul', 'west coast 24892 r&b 24893 r&b', 'rap', 'trap', 'colombia', 'atlanta', 'latin music', 'en español 24894 pop', 'rap', 'r&b', 'alternative pop', 'synth-pop', 'electro-funk', 'funk', 'nu disco', 'neo soul', 'alternative r&b 24895 pop', 'r&b', 'trap 24896 rap', 'r&b', 'dmv 24897 pop', 'rap', 'r&b', 'alternative pop', 'synth-pop', 'neo soul', 'alternative r&b 24898 r&b', 'pop', 'intro', 'experimental pop', 'synth-pop', 'alternative pop 24899 pop', 'rap', 'pop rap', 'alternative pop', 'alternative', 'trap', 'experimental hip-hop 24900 rap', 'r&b', 'soul', 'jazz rap 24901 pop', 'rap', 'alternative pop', 'synth-pop', 'hardcore hip-hop 24902 pop', 'country', 'ballad', 'pop country 24903 r&b', 'pop', 'rap', 'synth-pop', 'soul 24904 rap', 'atlanta', 'trap 24905 rap', 'trap', 'east coast', 'atlanta 24906 rap', 'r&b', 'pop', 'uk 24907 rock', 'pop', 'industrial', 'synth-pop', 'pop-rock', 'australia 24908 rap', 'uk rap', 'remix', 'underground hip-hop', 'indie rap 24909 country', 'ballad', 'singer-songwriter 24910 rap', 'atlanta 24911 pop', 'dancehall', 'colombia', 'reggaetón', 'latin pop', 'latin music', 'latin urban', 'en español 24912 country', 'ballad 24913 pop', 'electro', 'dance', 'dance-pop', 'electronic', 'future bass', 'bubblegum pop', 'teen pop', 'electro-pop', 'synth-pop 24914 rap', 'hardcore hip-hop', 'trap 24915 r&b', 'pop', 'lgbtq+', 'feminism 24916 pop', 'edm', 'electro house', 'electro', 'electro-pop', 'electronic', 'dance-pop', 'dance 24917 rap', 'conscious hip-hop 24918 pop', 'rap', 'r&b 24919 rap 24920 rap', 'orchestral', 'trap 24921 country 24922 pop', 'dark pop', 'alternative pop', 'indie pop', 'electro-pop 24923 r&b', 'cover 24924 country', 'ballad', 'singer-songwriter 24925 country', 'dance-pop', 'alternative', 'electro-funk', 'funk', 'atlanta', 'dance 24926 pop', 'latin pop', 'reggaetón', 'latin music', 'latin urban', 'puerto rico', 'en español 24927 pop', 'electro', 'edm', 'electro-pop', 'dance', 'dance-pop', 'electronic', 'scandipop', 'scandinavia', 'sverige 24928 r&b', 'rap', 'trap', 'atlanta 24929 pop', 'latin urban', 'dominican republic', 'latin pop', 'en español', 'puerto rico', 'latin music 24930 rock', 'pop', 'nu disco', 'tropical house', 'singer-songwriter 24931 r&b', 'emo rap', 'trap', 'alternative r&b', 'emo trap', 'atlanta 24932 rap', 'atlanta', 'trap 24933 pop', 'english translation 24934 pop', 'dance-pop', 'dance', 'electro', 'electronic', 'electro-pop', 'politics', 'protest songs', 'singer-songwriter', 'synth-pop', 'lgbtq+ 24935 rap', 'basketball', 'nba', 'canada 24936 rap', 'basketball', 'nba', 'canada 24937 rap', 'trap', 'hardcore hip-hop', 'east coast', 'atlanta 24938 r&b', 'pop', 'alternative', 'synth-pop', 'alternative r&b', 'ballad 24939 pop', 'edm', 'pop-punk', 'electronic 24940 r&b', 'contemporary folk', 'acoustic', 'canada 24941 country', 'singer-songwriter', 'memorial 24942 r&b', 'pop', 'latin music', 'méxico', 'canada', 'cuba', 'latin pop 24943 pop', 'rap', 'dance-pop', 'alternative r&b', 'ballad', 'atlanta', 'trap 24944 rap', 'trinidad & tobago', 'dancehall', 'east coast 24945 pop', 'country', 'rap', 'atlanta', 'east coast', 'trap', 'country rap 24946 country', 'pop', 'pop country', 'dance-pop', 'dance', 'electro-pop', 'electronic 24947 rap', 'atlanta', 'trap 24948 rap', 'trap', 'dirty south', 'east coast 24949 pop', 'electro', 'electro house', 'nederland', 'electronic', 'electro-pop', 'tropical house', 'dance-pop 24950 pop', ' ترجمه ی فارسی (farsi translation) 24951 pop', 'reggaetón', 'latin music', 'latin urban', 'puerto rico', 'colombia', 'en español', 'latin pop 24952 pop', 'r&b', 'soul', 'acoustic', 'dmv', 'canada 24953 rap 24954 rap', 'west coast 24955 rap', 'comedy', 'trap 24956 rap', 'intro', 'dirty south', 'west coast', 'east coast', 'trap 24957 rap', 'florida rap', 'atlanta', 'posse cut', 'east coast', 'west coast', 'trap 24958 pop', 'remix', 'colombia', 'latin pop', 'reggaetón', 'latin music', 'latin urban', 'puerto rico', 'en español 24959 country', 'pop country', 'ballad 24960 pop', 'rap', 'trap', 'uk 24961 pop 24962 rap', 'pop', 'uk 24963 country', 'ballad', 'adult contemporary', 'easy listening', 'pop country', 'singer-songwriter 24964 rap', 'trap', 'east coast', 'canada', 'atlanta 24965 country', 'pop', 'singer-songwriter', 'pop country 24966 pop', 'rap', 'alternative', 'alternative pop 24967 country', 'power pop', 'pop country', 'singer-songwriter 24968 r&b', 'pop', 'trap', 'disney', 'soundtrack 24969 pop', 'uk 24970 r&b', 'pop', 'uk r&b', 'synthwave', 'synth-pop', 'dance', 'trip-hop', 'ballad', 'blue-eyed soul', 'tropical house', 'adult contemporary', 'alternative r&b', 'alternative pop', 'neo soul', 'dance-pop', 'singer-songwriter', 'uk 24971 rap', 'dirty south', 'trap', 'atlanta 24972 pop', 'english translation 24973 pop', 'electronic', 'electro-pop', 'synthwave', 'ambient', 'adult alternative', 'alternative pop', 'alternative', 'ballad', 'easy listening', 'adult contemporary', 'dream pop', 'singer-songwriter', 'synth-pop 24974 r&b', 'traduction française 24975 rap', 'pop', 'emo trap', 'dark trap', 'dark pop', 'pop rap', 'trap', 'emo pop', 'emo rap 24976 r&b', 'pop', 'rap', 'soundtrack 24977 rap', 'trap', 'west coast 24978 rap', 'east coast', 'canada 24979 rap', 'memes', 'trap 24980 r&b', 'rap', 'west coast 24981 pop', 'edm', 'electro', 'teen pop', 'electro-pop', 'electronic', 'future bass 24982 country', 'singer-songwriter', 'ballad 24983 rap 24984 rap', 'atlanta', 'trap', 'west coast 24985 pop', 'rap', 'soul pop 24986 pop', 'r&b', 'rap', 'soul pop 24987 r&b', 'pop', 'bubblegum pop', 'dream pop', 'teen pop 24988 r&b', 'rap', 'canada 24989 rap', 'uk', 'canada 24990 r&b', 'rap', 'pop', "children's music", 'musicals', 'trap', 'tv', 'disney', 'soundtrack 24991 rap', 'canada 24992 rap', 'cumbia', 'trap', 'west coast 24993 rap', 'canada 24994 country', 'australia', 'ballad', 'pop country 24995 rock', 'post-metal', 'alternative metal', 'progressive metal', 'metal 24996 country', 'pop country 24997 rap', 'canada 24998 pop', 'country 24999 country', 'singer-songwriter', 'christian 25000 r&b', 'rap', 'east coast', 'dirty south', 'west coast 25001 rap', 'atlanta', 'trap 25002 pop', 'electronic', 'alternative pop', 'indie pop', 'synth-pop', 'electro-pop 25003 pop', 'mashup', 'remix 25004 r&b', 'rap 25005 rap', 'trap', 'emo rap 25006 country', 'pop country', 'singer-songwriter', 'feminism 25007 rap', 'pop rap', 'east coast', 'new york', 'trap 25008 rap', 'east coast', 'dirty south', 'atlanta', 'trap 25009 country', 'shoegaze', 'adult contemporary', 'pop country', 'doo-wop', 'piano', 'singer-songwriter', 'ballad 25010 rap', 'orchestral', 'trap', 'atlanta 25011 rap', 'trap', 'atlanta 25012 pop', 'r&b', 'teen pop', 'bubblegum pop 25013 pop 25014 rap', 'pop rap', 'east coast', 'cloud rap', 'trap', 'atlanta 25015 r&b', 'rap', 'atlanta', 'trap 25016 rap', 'pop rap', 'atlanta', 'trap 25017 rap', 'trap', 'atlanta 25018 rap', 'pop', 'canada', 'afrobeats 25019 pop', 'rap', 'r&b', 'pop rap', 'canada', 'electro-pop', 'trap', 'alternative r&b 25020 rap', 'atlanta', 'trap 25021 pop', 'rap', 'r&b', 'dance-pop', 'dance', 'alternative', 'pop rap', 'alternative r&b', 'remix', 'trap 25022 rap', 'pop rap', 'atlanta', 'trap 25023 rap', 'atlanta', 'trap 25024 country 25025 rap', 'trap 25026 pop', 'electronic', 'electro-pop', 'adult contemporary', 'protest songs', 'feminism', 'synth-pop', 'singer-songwriter 25027 pop', 'teen pop', 'trap', 'electronic', 'adult contemporary', 'bubblegum pop', 'electro-pop', 'synth-pop 25028 pop', 'teen pop', 'electronic', 'adult contemporary', 'electro-pop', 'synth-pop', 'singer-songwriter 25029 rock', 'pop', 'adult contemporary', 'synthwave', 'synth-pop', 'soul pop', 'new wave', 'pop-punk', 'pop-rock', 'singer-songwriter 25030 pop', 'adult contemporary', 'electronic', 'electro-pop', 'politics', 'dream pop', 'ballad', 'synth-pop', 'singer-songwriter 25031 pop', 'dance', 'adult contemporary', 'electronic', 'teen pop', 'funk-pop', 'dance-pop', 'electro-pop', 'bubblegum pop', 'singer-songwriter 25032 r&b', 'pop', 'rap', 'alternative pop', 'funk-pop', 'feminism 25033 pop', 'ballad', 'adult contemporary', 'electronic', 'electro-pop', 'new wave', 'synth-pop', 'singer-songwriter 25034 pop', 'synth-pop', 'electronic', 'electro-pop', 'adult contemporary', 'bubblegum pop', 'teen pop', 'singer-songwriter 25035 country', 'pop country', 'adult alternative', 'alternative', 'ballad', 'alternative pop', 'adult contemporary', 'easy listening', 'acoustic', 'singer-songwriter 25036 pop', 'adult contemporary', 'electronic', 'electro-pop', 'synth-pop', 'singer-songwriter 25037 pop', 'electro-pop', 'bubblegum pop', 'adult contemporary', 'easy listening', 'synth-pop', 'singer-songwriter 25038 r&b', 'pop', 'electronic', 'adult contemporary', 'adult alternative', 'alternative r&b', 'jazz fusion', 'smooth jazz', 'jazz', 'dream pop', 'neo soul', 'electro-pop', 'synth-pop', 'singer-songwriter 25039 r&b', 'dirty south', 'atlanta 25040 pop', 'adult contemporary', 'ballad', 'singer-songwriter 25041 country', 'singer-songwriter', 'ballad', 'chill', 'adult contemporary', 'easy listening', 'tropical house 25042 pop', 'ballad', 'alternative', 'adult alternative', 'soul pop', 'blue-eyed soul', 'adult contemporary', 'easy listening', 'alternative pop', 'celtic', 'calypso', 'singer-songwriter 25043 r&b', 'pop', 'chill', 'nu disco', 'synth-pop', 'alternative pop 25044 r&b', 'rock', 'pop', 'pop-rock', 'neo-psychedelia', 'psychedelic rock', 'psychedelic', 'adult contemporary', 'alternative pop', 'alternative r&b', 'cover', 'alternative', 'alternative rock 25045 rap', 'experimental hip-hop', 'experimental', 'hardcore hip-hop', 'neo-psychedelia', 'psychedelic soul', 'psychedelic', 'cloud rap', 'boom bap', 'east coast', 'trap 25046 r&b', 'rap', 'dmv', 'trap', 'atlanta 25047 rap', 'trap', 'east coast 25048 rap', 'east coast 25049 rap', 'east coast', 'trap 25050 country', 'pop', 'pop country 25051 pop', 'christian pop', 'christian 25052 pop', 'country', 'singer-songwriter', 'piano', 'adult alternative', 'adult contemporary', 'pop country 25053 rap', 'east coast', 'dancehall 25054 pop', 'latin pop', 'dancehall', 'reggaetón', 'puerto rico', 'colombia', 'en español', 'latin music', 'latin urban 25055 rock', 'rap', 'polska', 'polski rock', 'polska muzyka', 'polskie tłumaczenie (polish translation)', 'polski rap 25056 pop', 'rock', 'rap', 'dark ambient', 'ambient', 'dark pop', 'pop rap', 'pop-rock', 'intro', 'rap rock', 'trap', 'alternative rock', 'alternative 25057 rap', 'türkçe çeviri 25058 pop', 'rap', 'trap 25059 rap', 'trap 25060 rap', 'türkçe çeviri 25061 pop', 'rap', 'alternative pop 25062 pop', 'rap', 'singer-songwriter 25063 pop', 'rap', 'bounce', 'singer-songwriter 25064 pop', 'rock', 'pop-rock', 'alternative rock 25065 rap', 'soul pop 25066 pop', 'rap', 'trap 25067 pop', 'dance-pop', 'dancehall', 'flamenco', 'latin music', 'méxico', 'cuba', 'latin trap', 'trap', 'reggaetón', 'latin pop 25068 rap', 'r&b 25069 rock', 'pop', 'electro', 'electronic rock', 'electronic', 'electro-pop 25070 rap', 'trap 25071 pop', 'country', 'singer-songwriter', 'pop country 25072 rap', 'florida rap', 'gangsta rap', 'trap 25073 r&b', 'pop', 'teen pop', 'alternative r&b', 'soul pop', 'soul', 'alternative', 'dream pop', 'baroque pop', 'alternative pop', 'trip-hop', 'trap', 'soundtrack 25074 rap', 'memphis', 'trap 25075 pop', 'teen pop', 'alternative pop', 'alternative 25076 rap', 'drill', 'hip-hop', 'freestyle', 'canada 25077 rap', 'trap', 'east coast 25078 pop', 'r&b', 'trap', 'electronic', 'electro-pop 25079 country 25080 country', 'adult contemporary', 'easy listening', 'ballad', 'pop country', 'singer-songwriter 25081 rap', 'gangsta rap', 'trap', 'dirty south', 'east coast 25082 pop', 'ballad', 'soft rock', 'chill', 'pop-rock', 'acoustic 25083 pop', 'reggaetón', 'latin music', 'latin urban', 'puerto rico', 'latin pop', 'en español 25084 rap 25085 pop', 'latin urban', 'latin music', 'latin pop', 'colombia', 'reggaetón', 'en español', 'electro-pop', 'electro', 'france 25086 rap', 'gangsta rap', 'trap', 'dirty south 25087 rap', 'gangsta rap', 'trap', 'dirty south', 'east coast 25088 rap', 'gangsta rap', 'atlanta', 'trap', 'dirty south', 'east coast 25089 rap', 'dirty south', 'trap', 'east coast 25090 rap', 'gangsta rap', 'east coast', 'trap', 'dirty south 25091 rap', 'gangsta rap', 'trap', 'dirty south', 'east coast 25092 rap', 'posse cut', 'gangsta rap', 'atlanta', 'trap', 'dirty south', 'east coast 25093 rap', 'posse cut', 'gangsta rap', 'gospel', 'trap', 'atlanta', 'dirty south', 'east coast 25094 rap', 'pop', 'afrobeats', 'dancehall 25095 rap', 'gangsta rap', 'trap', 'dirty south', 'east coast 25096 rap', 'gangsta rap', 'dirty south', 'trap', 'east coast 25097 rap', 'gangsta rap', 'trap', 'dirty south', 'east coast 25098 rap', 'pop', 'k-solo', 'spanish music', 'k-hip-hop', 'south korea', 'korean', 'genius korea 25099 country', 'bluegrass', 'americana', 'honky tonk', 'singer-songwriter', 'pop country 25100 rap 25101 rap', 'gangsta rap', 'trap', 'dirty south', 'east coast 25102 rap', 'psychedelic', 'trap 25103 pop', 'country', 'adult contemporary', 'easy listening', 'ballad', 'singer-songwriter', 'pop country', 'canada 25104 rap', 'trap 25105 r&b', 'atlanta 25106 r&b 25107 r&b', 'atlanta 25108 r&b', 'atlanta 25109 r&b', 'dirty south', 'atlanta', 'soul 25110 r&b', 'dirty south', 'atlanta 25111 rock', 'pop', 'teen pop', 'singer-songwriter', 'soundtrack', 'pop-rock', 'alternative pop', 'ireland 25112 r&b', 'east coast', 'atlanta 25113 r&b', 'dirty south', 'atlanta 25114 pop', 'dance-pop', 'australia 25115 pop', 'psychedelic', 'psychedelic rock', 'pop-rock', 'soul pop', 'uk 25116 rap', 'trap 25117 rap', 'gangsta rap', 'dirty south', 'trap 25118 rap 25119 country', 'pop country', 'singer-songwriter 25120 rap', 'trap 25121 rap 25122 rap 25123 rap 25124 pop', 'piano', 'ballad 25125 rap', 'new york', 'trap 25126 rap', 'experimental hip-hop', 'trip-hop', 'hip-hop', 'cloud rap 25127 rap', 'trap', 'christian rap', 'gospel 25128 rap', 'memes', 'christian rap', 'gospel', 'soul 25129 rap', 'christian rap', 'soul', 'gospel 25130 rap', 'christian rap', 'trap 25131 pop', 'electro-pop', 'dance', 'dance-pop 25132 rap', 'deutsche übersetzung 25133 rap', 'christian rap', 'christian', 'soul', 'gospel 25134 rap', 'deutsche übersetzung 25135 rap', 'deutsche übersetzung 25136 pop', 'outro', 'soul', 'gospel 25137 rap', 'pop rap', 'atlanta', 'trap 25138 country', 'pop country', 'singer-songwriter 25139 pop', 'nu disco', 'edm', 'electro', 'house', 'dance', 'dance-pop', 'uk 25140 pop', 'rap', 'pop rap 25141 rap', 'dirty south', 'atlanta', 'soundtrack', 'gaming', 'trap 25142 rock', 'country', 'singer-songwriter 25143 r&b', 'rap', 'trap', 'emo rap 25144 rap', 'alternative r&b', 'hip-hop', 'cloud rap', 'trap 25145 country', 'pop country 25146 country 25147 r&b', 'tradução em português 25148 rap', 'atlanta', 'trap 25149 rap', 'atlanta', 'trap 25150 r&b', 'rap', 'florida rap', 'trap', 'soul 25151 country', 'adult contemporary', 'easy listening', 'piano', 'ballad', 'singer-songwriter 25152 pop', 'dark pop', 'art pop', 'downtempo', 'alternative pop 25153 pop', 'trinidad & tobago', 'dancehall', 'latin music', 'reggaetón', 'en español', 'latin pop', 'colombia', 'latin urban 25154 pop 25155 rap', 'r&b', 'hyphy', 'trap', 'alternative r&b', 'canada 25156 pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop', 'acoustic 25157 rap', 'pop', 'west coast', 'trap 25158 rap 25159 r&b 25160 pop', 'funk-pop', 'psychedelic rock', 'psychedelic', 'funk rock', 'soul pop', 'uk', 'pop-rock 25161 r&b', 'alternative r&b', 'dmv', 'canada 25162 r&b', 'pop', 'rap', 'alternative r&b', 'alternative', 'trap', 'emo rap 25163 rap', 'r&b', 'west coast', 'canada 25164 pop 25165 rock', 'country', 'pop country 25166 country', 'singer-songwriter 25167 rap', 'hardcore hip-hop', 'gangsta rap', 'dirty south', 'trap 25168 country 25169 pop', 'rap', 'r&b', 'pop rap', 'canada', 'electro-pop', 'trap', 'alternative r&b 25170 pop', 'dancehall', 'reggaetón', 'latin pop', 'latin music', 'latin urban', 'puerto rico', 'en español 25171 pop', 'norge', 'ballad', "children's music", 'musicals', 'disney', 'soundtrack 25172 r&b', 'rap', 'acoustic', 'trap', 'alternative r&b', 'emo rap 25173 rap', 'florida rap', 'trap 25174 rap', 'france', 'traduction française 25175 rap', 'cloud rap', 'trap 25176 pop', 'rap', 'r&b', 'pop rap', 'hip-hop', 'soul pop', 'soul', 'uk r&b', 'alternative', 'alternative pop', 'trap 25177 rap', 'trap 25178 pop', 'cover', "children's music", 'musicals', 'disney', 'soundtrack', 'remix 25179 pop', 'soul pop', 'orchestral', "children's music", 'musicals', 'disney', 'soundtrack 25180 r&b', 'pop', 'electro-pop', 'synth-pop', 'dance', 'synthwave 25181 pop', 'christmas 25182 r&b', 'rap', 'soul', 'psychedelic soul', 'alternative r&b', 'cloud rap', 'psychedelic', 'trap 25183 pop', 'holiday', 'christmas 25184 rap', 'trap 25185 pop', 'dance rock', 'funk', 'psychedelic rock', 'psychedelic', 'pop-rock', 'soul pop', 'dance-pop', 'uk 25186 rap', 'pop rap', 'memes', 'west coast', 'trap 25187 pop', 'singer-songwriter', 'christmas', 'adult contemporary', 'holiday 25188 rap', 'trap 25189 r&b', 'rap', 'pop', 'trap', 'pop rap', 'east coast', 'latin music', 'latin pop', 'cuba 25190 rap', 'русский перевод (russian translation) 25191 rap', 'trap', 'east coast', 'beef 25192 rap', 'trap 25193 pop', 'rap', 'alternative pop', 'pop rap 25194 rap', 'electronic trap', 'trance', 'electronic', 'edm', 'electro-hop', 'dance', 'trap 25195 pop', 'psychedelic rock', 'psychedelic', 'pop-rock', 'adult contemporary', 'soul pop', 'piano', 'ballad', 'uk 25196 rap 25197 rap', 'chicago rap', 'emo trap 25198 rap', 'trap 25199 pop', 'pop-rock', 'psychedelic rock', 'psychedelic', 'ballad', 'contemporary folk', 'uk 25200 pop', 'soft rock', 'soul pop', 'pop-rock', 'uk 25201 pop', 'dark pop', 'psychedelic', 'psychedelic rock', 'blues rock', 'uk 25202 pop', 'retro', 'holiday', 'jazz', 'christmas 25203 pop', "children's music", 'musicals', 'christmas 25204 rap', 'r&b', 'singer-songwriter', 'bay area', 'trap', 'west coast 25205 rap', 'traduction française 25206 rap', 'hip-hop', 'trap 25207 rap', 'türkçe çeviri 25208 r&b', 'rap', 'alternative r&b', 'psychedelic', 'cloud rap', 'trap 25209 rap', 'gangsta rap', 'new york', 'new york drill', 'east coast', 'drill', 'uk', 'trap 25210 r&b', 'traduction française 25211 pop', 'country', 'power pop', 'remix', 'singer-songwriter', 'pop country 25212 country 25213 country', 'piano', 'singer-songwriter', 'ballad', 'alternative country', 'pop country 25214 country', 'memorial', 'singer-songwriter', 'ballad 25215 country', 'pop country 25216 pop', 'folk pop', 'ballad', 'remix', 'acoustic 25217 pop', 'r&b', 'teen pop', 'trap', 'canada 25218 rap', 'trap 25219 r&b', 'rap', 'pop', 'pop rap', 'west coast', 'alternative r&b', 'alternative pop', 'alternative 25220 pop', 'ballad', 'piano', 'tv', 'soundtrack', 'musicals', 'disney 25221 country', 'singer-songwriter', 'ballad', 'pop country 25222 rap', 'new york', 'trap', 'east coast 25223 r&b 25224 rap', 'west coast', 'trap 25225 rap', 'canada', 'atlanta', 'trap 25226 rap', 'atlanta', 'dirty south', 'trap 25227 pop', 'r&b', 'alternative pop', 'alternative r&b', 'singer-songwriter 25228 country', 'pop', 'ballad', 'pop country 25229 pop', 'dream pop', 'future bass', 'singer-songwriter', 'adult contemporary 25230 r&b', 'pop 25231 r&b', 'pop 25232 rap', 'dirty south', 'trap 25233 rap', 'hip-hop 25234 pop', 'singer-songwriter 25235 rap', 'hardcore hip-hop', 'horrorcore', 'trap', 'conscious hip-hop', 'hip-hop 25236 rap', 'hardcore hip-hop', 'uk', 'hip-hop', 'trap 25237 rap', 'русский перевод (russian translation) 25238 rap', 'electronic', 'conscious hip-hop 25239 r&b', 'singer-songwriter', 'psychedelic', 'psychedelic soul 25240 rap', 'boom bap', 'hip-hop', 'hardcore hip-hop', 'beef 25241 r&b', 'pop', 'k-pop (케이팝)', 'k-r&b', 'south korea', 'boy band', 'genius korea', 'korean 25242 rap', 'türkçe çeviri', 'türkiye', 'turkey 25243 pop', 'r&b', 'funk', 'synth-pop', 'neo soul 25244 pop', 'rap', 'r&b', 'alternative r&b', 'alternative pop', 'singer-songwriter', 'psychedelic 25245 rap', 'intro', 'hardcore hip-hop', 'trap 25246 r&b', 'synth-pop', 'psychedelic soul', 'psychedelic', 'alternative r&b 25247 rap', 'hip-hop 25248 rap', 'r&b', 'funk', 'synth-pop', 'alternative r&b', 'psychedelic', 'psychedelic soul 25249 pop', 'soul', 'singer-songwriter', 'soul pop', 'cover 25250 rap', 'hardcore hip-hop', 'hip-hop', 'trap 25251 rap', 'türkçe çeviri', 'türkiye', 'turkey 25252 rap', 'hardcore hip-hop', 'horrorcore', 'hip-hop', 'trap 25253 pop', 'folk pop', 'folk', 'alternative r&b', 'singer-songwriter', 'psychedelic 25254 rap', 'horrorcore', 'hip-hop 25255 pop', 'psychedelic', 'baroque pop', 'singer-songwriter', 'folk 25256 rap', 'dirty south', 'hip-hop', 'trap 25257 pop', 'singer-songwriter', 'piano', 'adult contemporary', 'ballad 25258 rap', 'memorial', 'east coast', 'conscious hip-hop', 'hip-hop 25259 country', 'easy listening', 'chill', 'singer-songwriter', 'pop country 25260 pop', 'soft rock', 'orchestral', 'mental health', 'adult alternative', 'adult contemporary', 'piano', 'acoustic', 'ballad', 'singer-songwriter', 'blue-eyed soul', 'uk 25261 country 25262 pop', 'r&b', 'singer-songwriter', 'soul', 'soul pop', 'acoustic 25263 pop', 'piano', 'ballad', 'cuba', 'méxico 25264 r&b', 'canada 25265 country', 'ballad', 'pop country', 'singer-songwriter 25266 country 25267 rap', 'dirty south', 'atlanta', 'trap 25268 pop', 'synth-pop', 'electronic', 'protest songs', 'electro-pop', 'adult contemporary', 'politics', 'soundtrack', 'netflix', 'singer-songwriter 25269 pop', 'techno', 'dance rock', 'dark wave', 'dark pop', 'electro house', 'alternative dance', 'nu disco', 'synthwave', 'electro-pop', 'dance', 'synth-pop', 'dance-pop', 'uk 25270 rap 25271 r&b', 'rap', 'trap 25272 rap', 'trap 25273 rap', 'hip-hop 25274 rap', 'pop', 'electro-pop', 'dance', 'dance-pop 25275 r&b', 'traducción al español 25276 rap', 'beef', 'trap 25277 rap', 'producer', 'trap 25278 rock', 'r&b', 'alternative r&b', 'psychedelic rock', 'alternative 25279 pop', 'reggaetón', 'en español', 'puerto rico', 'latin pop', 'latin urban', 'latin music 25280 pop', 'rap', 'east coast 25281 rap', 'traduzione italiana 25282 pop', 'singer-songwriter', 'ireland 25283 pop', 'cinematic', 'orchestral', 'ballad', 'piano', 'alternative pop', 'soundtrack 25284 rap', 'atlanta', 'trap 25285 r&b', 'pop', 'traducción al español 25286 pop', 'soul pop', 'soul', 'easy listening', 'uk', 'piano', 'ballad', 'singer-songwriter 25287 rap', 'trap', 'gangsta rap', 'new york', 'new york drill', 'producer', 'drill 25288 r&b', 'alternative r&b', 'trap 25289 rap', 'chicago rap', 'memphis', 'east coast', 'gangsta rap', 'memes', 'trap', 'dirty south 25290 rap', 'atlanta', 'trap 25291 rap', 'r&b', 'east coast', 'trap 25292 pop', 'r&b', 'future garage', 'canada', 'synth-pop', 'dance', 'electro-pop', 'alternative pop', 'singer-songwriter', 'alternative r&b 25293 pop', 'dancehall', 'reggaetón', 'latin pop', 'panamá', 'puerto rico', 'en español', 'latin urban', 'latin music 25294 pop', 'rap', 'trap 25295 r&b', 'pop', 'teen pop', 'singer-songwriter', 'canada 25296 rap', 'trap', 'east coast 25297 r&b', 'pop', 'chillout', 'chill', 'singer-songwriter', 'ballad', 'canada 25298 r&b', 'pop', 'ballad', 'singer-songwriter', 'canada 25299 pop', 'k-pop (케이팝)', 'south korea', 'boy band', 'genius korea', 'korean 25300 rap 25301 rap', 'trap 25302 rap 25303 rap 25304 rap 25305 r&b', 'pop', 'ireland', 'remix', 'alternative pop', 'alternative', 'indie pop', 'indie 25306 rap 25307 pop', 'k-pop (케이팝)', 'south korea', 'genius korea', 'korean 25308 rap 25309 pop', 'k-pop (케이팝)', 'south korea', 'boy band', 'korean', 'genius korea 25310 rap', 'gangsta rap 25311 rap', 'new york', 'atlanta', 'new york drill', 'gangsta rap', 'east coast', 'trap', 'hip-hop', 'drill 25312 pop', 'electro-pop', 'adult contemporary 25313 pop', 'electro house', 'dance', 'electro', 'electronic', 'edm', 'nu disco', 'dance-pop', 'electro-pop 25314 rap', 'atlanta', 'trap 25315 pop', 'rap', 'pop rap', 'emo rap', 'emo trap', 'trap 25316 rap', 'atlanta', 'trap 25317 rap', 'atlanta', 'trap 25318 rap', 'atlanta', 'trap 25319 rap', 'trap', 'latin trap', 'latin urban', 'latin music', 'puerto rico', 'en español 25320 pop', 'reggaetón', 'latin pop', 'puerto rico', 'latin urban', 'latin music', 'en español 25321 rap', 'trap 25322 rap', 'atlanta', 'trap 25323 rap', 'atlanta', 'trap 25324 rap', 'atlanta', 'trap 25325 rap', 'atlanta', 'trap 25326 pop', 'latin trap', 'latin pop', 'puerto rico', 'latin urban', 'latin music', 'en español 25327 rap', 'atlanta', 'trap 25328 pop', 'reggaetón', 'latin pop', 'puerto rico', 'latin urban', 'latin music', 'en español 25329 rap', 'atlanta', 'trap 25330 pop', 'reggaetón', 'latin pop', 'puerto rico', 'en español', 'latin urban', 'latin music 25331 pop', 'reggaetón', 'latin music', 'puerto rico', 'latin urban', 'latin pop', 'en español 25332 rap', 'atlanta', 'trap 25333 pop', 'reggaetón', 'latin pop', 'puerto rico', 'latin urban', 'latin music', 'en español 25334 r&b', 'neo soul 25335 rap', 'atlanta', 'trap 25336 rap', 'intro', 'trap 25337 rap', 'trap 25338 rap', 'trap 25339 rap', 'hip-hop', 'outro', 'emo trap', 'trap', 'emo rap 25340 r&b', 'pop', 'feminism', 'synth-pop', 'trip-hop', 'piano', 'singer-songwriter 25341 rap', 'trap 25342 r&b 25343 rap', 'pop rap', 'trap 25344 pop', 'rap', 'electro-hop', 'electronic', 'electronic trap', 'alternative pop', 'alternative', 'pop rap', 'memes', 'trap 25345 rap', 'trap 25346 pop', 'rap', 'electronic trap', 'electronic', 'pop rap', 'trap 25347 rap', 'pop rap', 'electronic trap', 'trap 25348 pop', 'rap', 'electronic trap', 'electronic', 'pop rap', 'emo rap', 'trap 25349 rap', 'future bass', 'techno', 'hyperpop', 'electronic trap', 'electronic', 'trap 25350 rap', 'trap 25351 rap', 'cloud rap', 'trap 25352 r&b', 'west coast 25353 rap', 'cloud rap', 'trap 25354 rap', 'trap', 'dirty south 25355 r&b', 'rap', 'brasil', 'tradução em português', 'em português 25356 rap', 'cloud rap', 'atlanta', 'trap 25357 rap', 'pop rap', 'atlanta', 'canada', 'trap 25358 rap', 'producer', 'trap 25359 rap', 'trap 25360 rap', 'east coast', 'atlanta', 'trap 25361 rap', 'trap 25362 rap', 'atlanta', 'trap 25363 rap', 'atlanta', 'trap 25364 rap', 'emo rap', 'trap 25365 rap', 'trap 25366 rap', 'trap 25367 rock', 'rap', 'canada', 'rap rock', 'emo', 'lo-fi', 'emo rap 25368 rap', 'electronic trap', 'electronic', 'future bass', 'techno', 'canada', 'trap 25369 rap', 'hardcore hip-hop', 'trap', 'chicago drill', 'drill 25370 rap', 'pop rap', 'emo rap', 'alternative r&b', 'trap 25371 country', 'singer-songwriter 25372 rap', 'future bass', 'techno', 'hyperpop', 'atlanta', 'trap 25373 pop', 'türkçe çeviri', 'türkiye', 'turkey 25374 rap', 'east coast', 'atlanta', 'trap 25375 rap', 'cloud rap', 'trap 25376 country', 'chill', 'pop country', 'singer-songwriter 25377 rap', 'producer', 'trap', 'dirty south 25378 pop', 'synthwave', 'electro-funk', 'dance-pop', 'canada', 'alternative pop', 'new wave', 'synth-pop', 'dance', 'nu disco 25379 pop', 'r&b', 'synthwave', 'trap', 'canada', 'alternative r&b', 'synth-pop 25380 pop', 'r&b', 'synthwave', 'adult contemporary', 'canada', 'alternative pop', 'alternative r&b', 'synth-pop', 'ballad 25381 pop', 'r&b', 'future garage', 'canada', 'drum & bass', 'synth-pop', 'singer-songwriter', 'nu disco', 'alternative r&b 25382 pop', 'r&b', 'future garage', 'canada', 'uk garage', 'alternative pop', 'alternative r&b', 'synth-pop', 'singer-songwriter 25383 pop', 'r&b', 'downtempo', 'cloud rap', 'trap', 'canada', 'dark pop', 'alternative r&b 25384 pop', 'r&b', 'trap', 'downtempo', 'cloud rap', 'canada', 'alternative pop', 'alternative r&b 25385 r&b', 'pop', 'alternative pop', 'alternative', 'synthwave', 'new wave', 'alternative r&b', 'dream pop', 'singer-songwriter', 'synth-pop', 'nu disco', 'canada', 'remix 25386 pop', 'r&b', 'art pop', 'synthwave', 'canada', 'electro-pop', 'alternative r&b', 'alternative pop', 'synth-pop 25387 r&b', 'trap 25388 pop', 'r&b', 'neo-psychedelia', 'trap', 'canada', 'electro-pop', 'dark pop', 'alternative pop', 'synth-pop', 'alternative r&b 25389 r&b', 'psychedelic', 'glitch', 'art pop', 'canada', 'electro-pop', 'ballad', 'alternative r&b', 'synth-pop 25390 rap', 'west coast', 'memphis', 'trap 25391 rap', 'atlanta', 'canada', 'trap 25392 pop', 'house', 'funk-pop', 'funk', 'electro', 'electronic', 'synth-pop', 'electro-pop', 'edm', 'dance-pop', 'dance', 'uk 25393 r&b', 'canada 25394 country', 'alternative r&b', 'pop country', 'ballad', 'singer-songwriter 25395 country 25396 r&b', 'country', 'pop', 'alternative r&b', 'alternative country', 'singer-songwriter', 'pop country 25397 r&b', 'country', 'soul 25398 pop', 'covid-19', 'charity 25399 rap', 'trap', 'canada 25400 rap', 'gangsta rap', 'dirty south', 'east coast', 'trap 25401 rap 25402 rap 25403 country', 'pop country', 'ballad', 'singer-songwriter', 'covid-19 25404 rap', 'soul 25405 rap', 'trap', 'atlanta 25406 rap 25407 rap 25408 country', 'pop', 'singer-songwriter', 'pop country', 'pop-rock 25409 rap 25410 country', 'pop country 25411 rap 25412 rap 25413 pop', 'covid-19', 'pop-rock', 'alternative dance', 'synth-pop', 'dance-pop 25414 rap', 'trap', 'canada 25415 pop', 'dance-pop', 'dance', 'alternative', 'alternative pop', 'adult contemporary 25416 rap', 'canada', 'trap 25417 country', 'pop country', 'orchestral', 'girl group', 'singer-songwriter', 'ballad 25418 rap', 'chicago rap', 'trap 25419 country 25420 pop', 'dance', 'uk', 'remix 25421 r&b', 'rap', 'soul', 'trap 25422 rap', 'electronic', 'dance', 'deep house', 'electronica', 'dc universe', 'soundtrack', 'house 25423 rap 25424 rap', 'gangsta rap', 'east coast', 'trap 25425 rap', 'hardcore hip-hop', 'atlanta', 'trap 25426 r&b', 'pop', 'electronic trap', 'electro-pop', 'alternative pop', 'alternative', 'uk', 'anthem 25427 rap', 'dirty south', 'gangsta rap', 'east coast', 'atlanta', 'trap 25428 r&b', 'rap', 'dirty south', 'gangsta rap', 'east coast', 'trap 25429 rap 25430 country', 'ballad', 'singer-songwriter 25431 rap', 'gangsta rap', 'east coast', 'trap 25432 rap', 'gangsta rap', 'east coast', 'trap 25433 rap', 'emo trap', 'emo rap', 'gangsta rap', 'east coast', 'trap 25434 rap', 'gangsta rap', 'east coast', 'trap 25435 rap', 'gangsta rap', 'east coast', 'trap 25436 rap', 'gangsta rap', 'east coast', 'trap 25437 pop 25438 rap', 'trap 25439 country 25440 rap 25441 rap', 'alternative rock', 'emo trap', 'trap', 'emo rap 25442 rap', 'motown', 'atlanta', 'trap 25443 rap', 'trap', 'anime 25444 country', 'pop', 'singer-songwriter 25445 rap', 'dirty south', 'trap 25446 rap 25447 rap 25448 rap 25449 rap', 'trap 25450 country', 'power pop', 'alternative country', 'pop country', 'singer-songwriter 25451 rap 25452 rap', 'atlanta', 'canada', 'trap', 'hip-hop', 'русский перевод (russian translation) 25453 rap', 'traducción al español 25454 rap', 'trap', 'hip-hop', 'atlanta', 'canada 25455 r&b', 'rap', 'hip-hop', 'dmv', 'canada 25456 rap', 'traducción al español 25457 pop', 'alternative pop', 'alternative 25458 rap', 'trap', 'hip-hop', 'canada', 'atlanta 25459 rap', 'lo-fi', 'cloud rap', 'canada', 'hip-hop 25460 rap', 'new york drill', 'new york', 'canada', 'trap', 'hip-hop', 'drill 25461 r&b', 'rap', 'hip-hop', 'canada 25462 rap', 'trap', 'hip-hop', 'canada', 'atlanta 25463 rap', 'plugg', 'trap', 'canada', 'atlanta 25464 rap', 'trap', 'hip-hop', 'canada 25465 rap', 'hip-hop', 'drill', 'canada 25466 country', 'singer-songwriter', 'covid-19 25467 rap', 'detroit', 'atlanta', 'trap 25468 rap', 'trap 25469 rap', 'atlanta', 'trap 25470 rap', 'trap', 'atlanta 25471 country', 'pop country 25472 rap', 'uk', 'uk rap 25473 pop', 'soul', 'canada', 'alternative r&b', 'charity', 'covid-19 25474 rap', 'trap', 'east coast 25475 rap', 'chicago rap', 'trap 25476 r&b', 'traduction française 25477 rap', 'gangsta rap', 'new york', 'new york drill', 'trap', 'east coast', 'drill 25478 pop', 'r&b 25479 r&b', 'rap', 'pop rap', 'trap', 'atlanta', 'dmv 25480 pop', 'r&b', 'singer-songwriter 25481 rap 25482 rap', 'trap 25483 rap', 'chicago rap', 'trap', 'hip-hop 25484 rap', 'atlanta', 'trap 25485 pop', 'türkçe çeviri 25486 rap', 'dirty south', 'atlanta', 'trap 25487 pop', 'synth-pop', 'downtempo', 'ballad', 'singer-songwriter', 'covid-19', 'adult contemporary 25488 rap', 'atlanta', 'trap', 'intro 25489 rap', 'electronic trap', 'electronic', 'future bass', 'hyperpop', 'atlanta', 'trap 25490 pop', 'rap', 'chicago rap', 'conscious hip-hop', 'pop rap', 'hip-hop', 'atlanta', 'trap 25491 r&b', 'rap', 'chicago rap', 'trap 25492 rap', 'chicago rap', 'piano', 'hip-hop', 'pop rap', 'trap 25493 rap', 'atlanta', 'trap 25494 rap', 'atlanta', 'trap 25495 rap', 'atlanta', 'trap 25496 rap', 'atlanta', 'trap 25497 rap', 'atlanta', 'trap 25498 rap', 'atlanta', 'trap 25499 rap', 'atlanta', 'trap 25500 rap', 'atlanta', 'trap 25501 rap', 'chicago rap', 'trap 25502 r&b', 'pop', 'rap', 'chicago rap', 'pop rap', 'hip-hop', 'trap 25503 rap', 'chicago rap', 'trap 25504 rap', 'chicago rap', 'trap 25505 pop', 'nu disco', 'electro house', 'funk-pop', 'dance', 'dance-pop', 'electro-pop 25506 rap', 'trap', 'atlanta 25507 rap', 'atlanta', 'trap 25508 rap', 'orchestral', 'atlanta', 'trap 25509 rap', 'cloud rap', 'atlanta', 'trap 25510 rap', 'atlanta', 'trap 25511 rap', 'posse cut', 'gangsta rap', 'atlanta', 'trap 25512 rap', 'atlanta', 'trap 25513 rap', 'cloud rap', 'atlanta', 'trap 25514 rap', 'k-hip-hop', 'genius korea', 'k-solo', 'south korea', 'korean 25515 rap', 'cloud rap', 'atlanta', 'trap 25516 rap', 'cloud rap', 'atlanta', 'trap 25517 rap', 'atlanta', 'trap 25518 rap', 'atlanta', 'trap 25519 pop', 'electro house', 'chill', 'electro 25520 pop', 'techno', 'experimental pop', 'future house', 'beef', 'electronica', 'electro house', 'progressive house', 'deep house', 'house', 'electronic', 'electro-pop', 'korean', 'genius korea 25521 rock', 'r&b', 'pop', 'rap', 'pop-rock', 'alternative r&b', 'alternative pop', 'alternative', 'pop rap', 'alternative rock', 'chicago rap', 'emo trap', 'trap', 'emo rap 25522 rap', 'pop', 'spanish rap', 'alternative pop', 'alternative', 'pop rap', 'reggaetón', 'spanish urban', 'spanish pop', 'dirty south', 'spanish music', 'en español 25523 r&b', 'country', 'pop country 25524 country 25525 rap', 'posse cut', 'east coast', 'atlanta', 'trap 25526 pop', 'electro-pop', 'electronic', 'dance', 'house', 'dance-pop 25527 pop', 'reggaetón', 'latin pop', 'puerto rico', 'latin urban', 'latin music', 'en español 25528 country 25529 pop', 'edm 25530 country', 'pop country 25531 pop', 'rap', 'r&b', 'alternative dance', 'dance', 'alternative pop', 'alternative', 'pop rap', 'alternative r&b', 'trap 25532 country', 'singer-songwriter', 'pop country 25533 rap', 'hip-hop', 'politics', 'trap', 'protest songs 25534 rap', 'new york drill', 'new york', 'east coast', 'freestyle', 'drill 25535 pop', 'electronic', 'dance', 'puerto rico', 'latin urban', 'en español', 'latin pop', 'latin music 25536 rock', 'country', 'heartland rock 25537 country 25538 country', 'singer-songwriter', 'race / ethnicity 25539 rap', 'trinidad & tobago', 'east coast', 'trap 25540 rap', 'conscious hip-hop', 'hip-hop', 'atlanta', 'trap', 'protest songs 25541 rap', 'gangsta rap', 'new york drill', 'new york', 'drill', 'east coast 25542 rap', 'chicago rap', 'australia', 'trap', 'emo rap 25543 rap', 'memphis', 'gangsta rap', 'trap 25544 rap', 'politics', 'conscious hip-hop', 'neo soul 25545 rap', 'trap 25546 pop', 'k-pop (케이팝)', 'south korea', 'korean', 'genius korea', 'remix 25547 r&b', 'pop 25548 country', 'ballad', 'singer-songwriter 25549 country 25550 rap 25551 rap', 'r&b', 'pop', 'pop rap', 'trap', 'protest songs 25552 rap', 'trap', 'drill 25553 country', 'country rap', 'trap 25554 rap', 'trap', 'soundtrack 25555 rock', 'country', 'alternative country', 'ballad', 'singer-songwriter', 'pop country 25556 pop', 'alternative dance', 'alternative pop', 'alternative', 'dance-pop', 'dance', 'indie pop', 'indie', 'singer-songwriter 25557 rap', 'hip-hop', 'trap', 'gangsta rap', 'dirty south 25558 rap', 'pop', 'k-pop (케이팝)', 'south korea', 'k-idol-hip-hop', 'edm', 'korean', 'girl group', 'genius korea 25559 rap', 'avant garde', 'experimental', 'trap', 'christian rap', 'hip-hop', 'house', 'politics', 'experimental hip-hop', 'christian', 'gospel 25560 rap', 'trap', 'atlanta 25561 rock', 'country', 'outlaw country', 'protest songs', 'race / ethnicity 25562 country', 'singer-songwriter 25563 rap 25564 country', 'ballad 25565 rap', 'русский перевод (russian translation) 25566 rap', 'русский перевод (russian translation) 25567 rap', 'gangsta rap', 'new york', 'drill', 'trap', 'east coast', 'hip-hop 25568 rap', 'new york drill', 'new york', 'drill', 'east coast', 'atlanta', 'trap 25569 rap', 'gangsta rap', 'new york', 'east coast', 'trap 25570 rap', 'gangsta rap', 'new york drill', 'new york', 'drill', 'east coast', 'trap 25571 r&b', 'rap', 'new york', 'east coast 25572 rap', 'r&b', 'gangsta rap', 'new york', 'east coast', 'trap 25573 rap', 'polskie tłumaczenie (polish translation) 25574 r&b', 'trap', 'new york', 'east coast', 'hip-hop 25575 rap 25576 rap', 'gangsta rap', 'new york drill', 'new york', 'drill', 'east coast', 'intro 25577 rap', 'r&b', 'latin trap', 'new york', 'east coast', 'en español', 'latin urban', 'latin music', 'colombia 25578 rap', 'new york drill', 'new york', 'drill', 'east coast', 'trap 25579 rap', 'dirty south 25580 rap', 'gangsta rap', 'new york', 'east coast', 'atlanta', 'west coast', 'trap 25581 r&b', 'rap', 'new york', 'east coast 25582 rap', 'gangsta rap', 'outro', 'new york', 'drill', 'east coast', 'trap 25583 rap', 'pop', 'reggaetón', 'east coast', 'en español', 'latin pop', 'latin urban', 'latin music 25584 pop 25585 rock', 'rap', 'chicago blues', 'chicago rap', 'chill', 'soft rock', 'rap rock', 'trap', 'emo trap', 'emo rap 25586 rap', 'chicago rap', 'pop rap', 'emo', 'emo trap', 'trap', 'emo rap 25587 rap', 'chicago rap', 'hardcore hip-hop', 'aussie hip-hop', 'australia', 'emo trap', 'trap', 'emo rap 25588 rap', 'chicago rap', 'emo trap', 'trap', 'emo rap 25589 rap', 'chicago rap', 'emo trap', 'trap', 'emo rap 25590 rap', 'emo trap', 'trap', 'emo rap 25591 rap', 'hip-hop 25592 rap', 'chicago rap', 'emo trap', 'trap', 'emo rap 25593 rap', 'chicago rap', 'emo trap', 'trap', 'emo rap 25594 rap', 'dance-pop', 'pop rap', 'chicago rap', 'emo trap', 'trap', 'emo rap 25595 rap', 'chicago rap', 'emo rap', 'emo trap', 'trap 25596 rap', 'chicago rap', 'emo trap', 'trap', 'emo rap 25597 rap', 'chicago rap', 'emo trap', 'trap', 'emo rap 25598 rap', 'rock', 'chicago rap', 'rap rock', 'pop rap', 'emo', 'alternative rock', 'alternative', 'emo rap', 'pop-punk 25599 r&b', 'atlanta 25600 r&b', 'atlanta 25601 rap', 'bay area', 'trap', 'west coast 25602 rap', 'traducción al español 25603 pop', 'traducción al español 25604 pop', 'deutschland', 'sverige', 'edm', 'electronic', 'dance 25605 pop', 'adult contemporary', 'folk', 'soft rock', 'alternative', 'adult alternative', 'ballad', 'alternative pop', 'singer-songwriter 25606 pop', 'adult contemporary', 'adult alternative', 'soft rock', 'piano', 'alternative pop', 'ballad', 'singer-songwriter 25607 pop', 'folktronica', 'alternative pop', 'alternative', 'folk', 'singer-songwriter', 'folk pop 25608 pop', 'adult contemporary', 'adult alternative', 'gothic rock', 'synth-pop', 'alternative', 'folk pop', 'singer-songwriter', 'folk', 'alternative pop 25609 pop', 'adult contemporary', 'dream pop', 'alternative', 'ballad', 'adult alternative', 'singer-songwriter', 'alternative pop 25610 pop', 'chamber music', 'adult contemporary', 'adult alternative', 'dream pop', 'singer-songwriter', 'alternative', 'alternative pop', 'folk pop', 'folk 25611 pop', 'adult contemporary', 'adult alternative', 'folk pop', 'alternative pop', 'alternative', 'singer-songwriter', 'folk 25612 pop', 'folk', 'alternative pop', 'alternative', 'adult alternative', 'adult contemporary', 'folk pop', 'singer-songwriter 25613 pop', 'ballad', 'dream pop', 'adult alternative', 'adult contemporary', 'orchestral', 'alternative pop', 'folk', 'folk pop', 'alternative', 'singer-songwriter 25614 country', 'folk rock', 'folk', 'alternative pop', 'alternative', 'americana', 'pop country', 'singer-songwriter 25615 pop', 'adult contemporary', 'adult alternative', 'ballad', 'acoustic', 'folk pop', 'folk', 'alternative pop', 'alternative', 'singer-songwriter 25616 rock', 'pop', 'singer-songwriter', 'pop-rock 25617 pop', 'feminism', 'piano', 'folk', 'adult contemporary', 'adult alternative', 'alternative pop', 'alternative', 'ballad', 'singer-songwriter', 'folk pop 25618 rap', 'trap', 'conscious hip-hop 25619 country', 'pop country', 'ballad 25620 pop', 'adult contemporary', 'adult alternative', 'ambient', 'folk', 'alternative', 'chamber music', 'ballad', 'alternative pop', 'singer-songwriter', 'folk pop 25621 pop', 'ballad', 'synth-pop', 'adult contemporary', 'adult alternative', 'folk pop', 'folk', 'alternative pop', 'alternative', 'singer-songwriter 25622 pop', 'en español', 'uk', 'latin urban', 'latin music', 'latin pop', 'reggaetón', 'colombia', 'puerto rico 25623 pop', 'folk', 'adult contemporary', 'adult alternative', 'piano', 'alternative', 'ballad', 'folk pop', 'alternative pop', 'singer-songwriter 25624 rap', 'east coast', 'trap 25625 r&b', 'pop', 'soul', 'lo-fi', 'downtempo', 'ambient', 'soul pop', 'neo soul', 'alternative r&b', 'bedroom pop', 'ballad', 'alternative pop', 'alternative 25626 rap', 'atlanta', 'trap', 'east coast', 'trinidad & tobago', 'hip-hop 25627 pop', 'country', 'singer-songwriter', 'easy listening', 'piano', 'ballad', 'adult contemporary', 'pop country 25628 rap 25629 rap 25630 rap', 'emo trap', 'emo rap', 'trap 25631 rap', 'florida rap 25632 pop', 'dance-pop', 'dance', 'electro', 'electro-pop', 'electronic', 'edm', 'synth-pop 25633 pop 25634 rap', 'freestyle 25635 country', 'pop country 25636 rap 25637 rap', 'chicago rap', 'trap', 'canada 25638 country', 'chill', 'pop country', 'ballad', 'singer-songwriter 25639 rock', 'pop', 'alternative rock', 'lgbtq+', 'electro-pop', 'nu disco 25640 rap', 'trap 25641 pop', 'teen pop', 'ballad', 'adult contemporary 25642 rap', 'trap', 'deutsche übersetzung 25643 rap', 'atlanta', 'trap', 'remix 25644 country', 'pop country 25645 pop', 'k-pop (케이팝)', 'south korea', 'nu disco', 'boy band', 'genius korea 25646 pop', 'rap', 'psychedelic', 'experimental', 'soundtrack 25647 pop', 'canada', 'remix', 'reggaetón', 'colombia', 'en español', 'latin urban', 'latin pop', 'latin music 25648 rap', 'trap 25649 pop', 'electro-pop', 'teen pop', 'canada', 'electronic 25650 rap', 'new york', 'hip-hop', 'east coast', 'trap 25651 rock', 'country', 'bluegrass', 'ballad', 'americana', 'folk', 'singer-songwriter', 'adult alternative', 'alternative country 25652 rap', 'emo rap', 'trap 25653 rap', 'trap', 'hip-hop 25654 rap 25655 rock', 'country', 'ballad', 'feminism 25656 r&b', 'pop', 'alternative r&b 25657 pop', 'spanish urban', 'spanish pop', 'spanish music', 'colombia', 'remix', 'panamá', 'latin music', 'reggaetón', 'en español', 'latin urban', 'latin pop 25658 rap', 'detroit', 'trap 25659 pop', 'rap', 'trap 25660 rap', 'west coast', 'trap 25661 country', 'ballad', 'pop country', 'singer-songwriter 25662 rap', 'r&b 25663 country', 'singer-songwriter 25664 rap', 'trap 25665 rap', 'trap 25666 pop', 'mental health', 'electro-pop', 'electronic', 'edm 25667 rap', 'trap 25668 country 25669 rap', 'trap', 'beef 25670 rap', 'trap 25671 rap', 'trap 25672 rap', 'dirty south', 'trap 25673 r&b 25674 rap', 'trap 25675 pop', 'deutsche übersetzung 25676 pop', 'dance-pop', 'dance', 'singer-songwriter', 'nu disco', 'lgbtq+', 'uk 25677 country 25678 rap', 'trap 25679 rap', 'trap 25680 pop', 'singer-songwriter', 'pagode baiano', 'puerto rico', 'en español', 'latin urban', 'latin music', 'latin pop', 'brasil 25681 rap 25682 rap', 'hip-hop', 'east coast', 'trinidad & tobago', 'remix', 'trap 25683 rap', 'atlanta', 'trap 25684 rap', 'русский перевод (russian translation) 25685 rock', 'alternative', 'pop-punk 25686 rap', 'chicago rap', 'hip-hop', 'pop rap', 'trap 25687 rock', 'alternative', 'pop-punk 25688 r&b 25689 r&b', 'pop', 'uk r&b', 'uk 25690 rock', 'punk rock', 'alternative rock', 'alternative', 'pop-punk 25691 country', 'singer-songwriter', 'ballad 25692 pop', 'reggaetón', 'colombia', 'en español', 'latin music', 'latin urban', 'latin pop 25693 country', 'country rap', 'chill', 'pop country', 'singer-songwriter 25694 pop', 'indie pop', 'indie', 'cover 25695 rap', 'trap', 'canada 25696 rap', 'horrorcore', 'atlanta', 'trap', 'hip-hop 25697 rap', 'canada', 'hip-hop', 'atlanta', 'trap 25698 pop', 'canada', 'ballad', 'piano 25699 rap', 'horrorcore', 'atlanta', 'trap 25700 rap', 'electro-industrial', 'industrial hip-hop', 'industrial', 'electronic trap', 'electronic', 'trap', 'dirty south', 'hip-hop', 'atlanta 25701 rap', 'atlanta', 'trap 25702 rap', 'hip-hop', 'atlanta', 'trap 25703 r&b', 'canada 25704 rap', 'atlanta', 'trap 25705 rap', 'atlanta', 'trap 25706 r&b', 'rap', 'pop', 'k-pop (케이팝)', 'electro-pop', 'south korea', 'genius korea', 'girl group', 'korean 25707 rap', 'atlanta', 'trap 25708 rap', 'atlanta', 'trap 25709 r&b', 'rap', 'pop', 'electronic', 'electro-pop', 'funk-pop', 'electro', 'dance', 'dance-pop', 'synth-pop', 'nu disco', 'uk 25710 r&b', 'rap', 'atlanta 25711 r&b 25712 r&b 25713 rap', 'outro', 'atlanta', 'trap 25714 rap', 'pop', 'pop rap', 'synth-pop', 'dance-pop 25715 country', 'singer-songwriter 25716 pop', 'teen pop', 'lgbtq+ 25717 pop', 'ballad', 'canada 25718 r&b', 'remix', 'canada 25719 rap', 'electronic', 'hip-hop 25720 pop', 'rap', 'trap', 'pop rap', 'comedy', 'youtube', 'diss track 25721 country 25722 r&b', 'rap', 'trap', 'atlanta 25723 rap', 'atlanta', 'trap 25724 country', 'tv', 'singer-songwriter 25725 r&b', 'pop', 'adult alternative', 'alternative', 'trap', 'alternative pop', 'alternative r&b 25726 country', 'ballad', 'singer-songwriter 25727 rap', 'trap 25728 pop', 'r&b', 'rap', 'pop rap', 'trap 25729 country 25730 r&b', 'bay area', 'singer-songwriter', 'soul 25731 rap', 'hip-hop 25732 pop', 'rap', 'emo', 'acoustic', 'aussie hip-hop 25733 country', 'singer-songwriter 25734 rap', 'trap 25735 pop', 'reggaetón', 'puerto rico', 'en español', 'latin urban', 'latin music', 'latin pop 25736 pop 25737 country', 'singer-songwriter 25738 pop 25739 pop', 'latin pop', 'puerto rico', 'en español', 'latin music', 'latin urban 25740 rap', 'r&b', 'pop', 'deep house', 'pop rap', 'house', 'alternative pop', 'dance-pop', 'dance 25741 pop', 'r&b', 'singer-songwriter', 'downtempo', 'orchestral', 'ballad', 'soul pop', 'alternative r&b', 'canada 25742 pop', 'r&b', 'singer-songwriter', 'easy listening', 'alternative r&b', 'dream pop', 'orchestral', 'soul pop', 'ballad', 'soul 25743 r&b', 'pop', 'pop rap', 'alternative r&b', 'trap 25744 r&b', 'pop', 'soul pop', 'ballad', 'orchestral 25745 r&b', 'singer-songwriter', 'neo soul', 'alternative r&b 25746 pop 25747 pop', 'r&b', 'pop rap', 'alternative r&b', 'trap 25748 r&b', 'singer-songwriter', 'easy listening', 'swing jazz', 'swing', 'doo-wop', 'jazz fusion', 'soul', 'jazz', 'new jack swing', 'neo soul 25749 r&b', 'pop', 'ballad', 'trap', 'soul pop 25750 r&b', 'easy listening', 'singer-songwriter', 'downtempo', 'new jack swing 25751 r&b', 'pop', 'jazz fusion', 'soul pop', 'alternative r&b 25752 rap', 'trap 25753 rap', 'r&b', 'atlanta', 'trap 25754 rap', 'producer 25755 pop', 'uk 25756 pop', 'rap', 'dirty south', 'hip-hop', 'hyphy', 'trap', 'trinidad & tobago', 'east coast', 'producer 25757 rap', 'chicago rap', 'drill', 'chicago drill 25758 rap', 'canada', 'atlanta', 'trap 25759 rap', 'chicago rap', 'chicago drill', 'drill 25760 rap', 'emo trap', 'trap', 'emo rap 25761 pop 25762 rap', 'chicago rap', 'remix', 'chicago drill', 'drill 25763 pop', 'rap', 'aussie hip-hop', 'emo rap', 'hip-hop 25764 rap', 'canada', 'atlanta', 'trap 25765 country', 'singer-songwriter 25766 r&b', 'pop', 'electro-funk', 'synth-pop', 'indie pop', 'singer-songwriter', 'electronic', 'pop rap', 'dance-pop', 'alternative r&b', 'electro-pop', 'alternative pop', 'alternative', 'dark pop 25767 rap', 'new york', 'new york drill', 'trap', 'east coast', 'drill 25768 rap', 'emo rap', 'emo trap', 'trap 25769 rap', 'chill', 'atlanta', 'trap 25770 pop', 'rap', 'pop rap', 'hip-hop', 'atlanta', 'trap 25771 rap', 'atlanta', 'trap 25772 rap', 'atlanta', 'trap 25773 rap', 'atlanta', 'trap 25774 pop', 'contemporary folk', 'folk 25775 rap', 'atlanta', 'trap 25776 rap', 'atlanta', 'trap 25777 rap', 'atlanta', 'trap 25778 country', 'singer-songwriter 25779 rap', 'atlanta', 'trap 25780 rap', 'atlanta', 'trap 25781 rap', 'atlanta', 'trap 25782 pop', 'k-pop (케이팝)', 'south korea', 'alternative pop', 'korean', 'boy band', 'genius korea 25783 rock', 'pop', 'pop-rock', 'canada 25784 rap', 'trap', 'bounce', 'dirty south 25785 pop', 'k-ballad', 'k-pop (케이팝)', 'south korea', 'korean', 'ballad', 'boy band', 'genius korea 25786 pop', 'k-pop (케이팝)', 'south korea', 'edm', 'korean', 'boy band', 'genius korea 25787 country', 'easy listening', 'chill', 'pop country', 'ballad', 'singer-songwriter 25788 rock', 'country', 'pop country', 'soft rock', 'ballad', 'singer-songwriter 25789 pop', 'deutsche übersetzung 25790 pop', 'k-pop (케이팝)', 'south korea', 'ballad', 'korean', 'boy band', 'genius korea 25791 pop', 'k-pop (케이팝)', 'south korea', 'korean', 'boy band', 'genius korea 25792 rap', 'hardcore hip-hop', 'trap', 'dirty south 25793 rap', 'south korea', 'hip-hop', 'k-idol-hip-hop', 'korean', 'boy band', 'genius korea 25794 rap', 'dirty south', 'hip-hop', 'beef', 'diss track 25795 rock', 'r&b', 'country', 'country rap', 'alternative r&b', 'outlaw country', 'pop country', 'singer-songwriter 25796 rap', 'trap 25797 rap', 'bounce', 'trap', 'dirty south 25798 rap', 'hip-hop', 'bounce 25799 pop', 'colombia', 'reggaetón', 'latin pop', 'latin urban', 'latin music', 'en español 25800 country', 'americana', 'honky tonk', 'bluegrass', 'adult contemporary', 'acoustic', 'easy listening', 'ballad', 'cover 25801 pop', 'spanish pop', 'latin pop', 'reggaetón', 'spanish urban', 'spanish music', 'puerto rico', 'latin urban', 'latin music', 'en español 25802 pop', 'latin pop', 'reggaetón', 'puerto rico', 'latin urban', 'en español', 'latin music 25803 rap', 'rock', 'trap', 'latin trap', 'en español', 'latin music', 'puerto rico 25804 country 25805 rap', 'pop', 'latin pop', 'puerto rico', 'en español', 'latin urban', 'latin music 25806 rap', 'emo trap', 'latin trap', 'trap', 'puerto rico', 'en español', 'latin urban', 'latin music 25807 country', 'pop country', 'christmas', 'holiday 25808 rap', 'latin trap', 'trap', 'puerto rico', 'en español', 'latin urban', 'latin music 25809 rap', 'latin trap', 'trap', 'puerto rico', 'en español', 'latin urban', 'latin music 25810 rap', 'latin trap', 'trap', 'puerto rico', 'latin urban', 'en español', 'latin music 25811 rock', 'pop', 'holiday', 'christmas 25812 rock', 'rap', 'funk rock', 'funk', 'latin rock', 'latin trap', 'trap', 'puerto rico', 'en español', 'latin urban', 'latin music 25813 rap', 'trap', 'latin trap', 'puerto rico', 'en español', 'latin urban', 'latin music 25814 pop', 'country', 'holiday 25815 rap', 'atlanta', 'trap 25816 rap', 'motown', 'trap', 'atlanta 25817 rock', 'emo pop', 'pop-rock', 'folk pop', 'australia 25818 pop 25819 r&b', 'pop', 'holiday', 'remix', 'christmas 25820 country', 'holiday', 'christmas 25821 country', 'power pop', 'singer-songwriter', 'christmas', 'holiday 25822 country', 'ballad', 'holiday', 'christmas 25823 pop', 'baroque pop', 'alternative rock', 'folk pop', 'singer-songwriter', 'orchestral', 'chamber music', 'folk', 'adult alternative', 'alternative pop', 'adult contemporary', 'alternative 25824 pop', 'singer-songwriter', 'lo-fi', 'alternative pop', 'adult contemporary', 'piano', 'ballad', 'adult alternative 25825 country', 'pop', 'folk rock', 'folk', 'adult contemporary', 'alternative', 'alternative rock', 'folk pop', 'adult alternative', 'pop-rock', 'singer-songwriter 25826 rock', 'pop', 'holiday', 'singer-songwriter', 'alternative rock', 'folk rock', 'folk pop', 'folk', 'ballad', 'adult alternative', 'alternative pop', 'adult contemporary', 'alternative 25827 pop', 'singer-songwriter', 'chamber music', 'synth-pop', 'adult alternative', 'alternative pop', 'adult contemporary', 'alternative 25828 rap', 'trap', 'psychedelic', 'hip-hop 25829 pop', 'baroque pop', 'chamber pop', 'synth-pop', 'singer-songwriter', 'piano', 'ballad', 'alternative pop', 'adult alternative', 'adult contemporary 25830 r&b', 'pop', 'cover', 'traditional', 'holiday', 'jazz', 'soul jazz', 'soul', 'soul pop', 'christmas 25831 rap', 'trap', 'hip-hop', 'psychedelic 25832 pop', 'ambient', 'synth-pop', 'folk pop', 'ballad', 'adult alternative', 'alternative pop', 'folk', 'singer-songwriter', 'adult contemporary', 'alternative 25833 rap', 'new york drill', 'new york', 'gangsta rap', 'uk drill', 'uk rap', 'uk', 'drill 25834 pop', 'traducción al español 25835 pop', 'soft rock', 'singer-songwriter', 'adult alternative', 'alternative pop', 'adult contemporary 25836 rock', 'pop', 'tradução em português 25837 rap', 'psychedelic', 'hip-hop 25838 country', 'pop', 'singer-songwriter', 'americana', 'pop country', 'folk pop', 'folk', 'adult alternative', 'alternative pop', 'adult contemporary', 'alternative 25839 pop', 'traducción al español 25840 rock', 'country', 'pop', 'singer-songwriter', 'folk rock', 'folk', 'alternative rock', 'alternative country', 'blues rock', 'blues', 'alternative 25841 rap', 'pop', 'trap', 'hip-hop 25842 rock', 'pop', 'singer-songwriter', 'orchestral', 'folk pop', 'folk rock', 'folk', 'alternative rock', 'synth-pop', 'adult alternative', 'alternative pop', 'alternative', 'adult contemporary 25843 rap', 'alternative r&b', 'psychedelic 25844 rap', 'neo-psychedelia', 'trap', 'hip-hop 25845 pop', 'singer-songwriter', 'folk pop', 'folk', 'industrial', 'alternative pop', 'adult contemporary', 'adult alternative', 'alternative 25846 rap', 'trap', 'psychedelic', 'hip-hop 25847 rap', 'emo trap', 'trap', 'emo rap', 'australia 25848 rap', 'emo trap', 'emo rap', 'emo', 'trap', 'hip-hop 25849 rap', 'trap', 'hip-hop 25850 pop', 'retro', 'holiday', 'christmas 25851 pop 25852 r&b', 'pop', 'holiday', 'seventies', 'motown', 'funk', 'soul', 'soul pop', 'christmas 25853 rock', 'holiday', 'christmas 25854 pop', 'canada', 'christmas', 'jazz 25855 pop', 'ballad', 'singer-songwriter', 'uk', 'acoustic 25856 rap', 'hardcore hip-hop', 'hip-hop', 'horrorcore', 'covid-19', 'trap 25857 pop', 'christmas', 'holiday', 'cover 25858 rap 25859 rap', 'trap 25860 rap', 'youtube', 'trap 25861 r&b', 'alternative r&b 25862 rap', 'drill', 'chicago drill 25863 rap', 'trap 25864 rap', 'future bass', 'techno', 'atlanta', 'trap 25865 rap', 'русский перевод (russian translation) 25866 rap', 'trap 25867 rock', 'rap', 'remix 25868 rap', 'atlanta', 'trap 25869 country 25870 rap', 'atlanta', 'trap 25871 rap', 'trap 25872 rap', 'hardcore hip-hop', 'hip-hop', 'rap rock 25873 rap', 'tradução em português 25874 country', 'ballad', 'singer-songwriter', 'pop country 25875 pop', 'canada 25876 country 25877 country', 'pop country 25878 rap', 'chicago rap', 'diss track', 'gangsta rap', 'drill', 'chicago drill', 'memphis', 'trap 25879 country 25880 country', 'singer-songwriter 25881 country', 'ballad', 'singer-songwriter 25882 r&b', 'pop', 'uk r&b', 'alternative r&b', 'electro-pop', 'psychedelic', 'alternative', 'electronic', 'adult alternative', 'trip-hop', 'uk', 'alternative pop', 'synth-pop 25883 pop', 'alternative pop', 'piano', 'ballad', 'teen pop 25884 r&b', 'country', 'alternative r&b', 'pop country', 'ballad', 'singer-songwriter 25885 country', 'adult contemporary', 'acoustic', 'piano', 'easy listening', 'ballad 25886 pop', 'rap', 'alternative dance', 'alternative pop', 'alternative', 'adult alternative', 'bounce', 'trap', 'pop rap', 'korean', 'j-pop', 'k-pop (케이팝)', 'k-solo', 'k-hip-hop', 'singer-songwriter', 'j-rap', 'hip-hop', 'genius korea', 'remix', 'japan', 'south korea 25887 country 25888 country', 'ballad', 'pop country 25889 pop', 'country', 'country rap', 'pop country', 'singer-songwriter 25890 r&b', 'country', 'outlaw country', 'alternative r&b', 'pop country', 'singer-songwriter 25891 country', 'ballad 25892 country 25893 country', 'ballad 25894 country', 'singer-songwriter', 'bluegrass', 'country rap', 'outlaw country 25895 rock', 'country', 'singer-songwriter', 'bluegrass', 'blues', 'ballad 25896 pop', 'r&b', 'soul rap', 'soul pop', 'soul', 'alternative pop', 'psychedelic', 'trap', 'alternative r&b 25897 country', 'singer-songwriter', 'ballad', 'pop country 25898 country', 'outlaw country', 'ballad', 'singer-songwriter 25899 r&b', 'alternative r&b 25900 r&b', 'alternative r&b 25901 rap', 'dance', 'memes', 'trap 25902 rap', 'hip-hop', 'trap', 'atlanta 25903 rap', 'dirty south', 'trap 25904 country', 'singer-songwriter 25905 rap', 'abstract rap', 'hip-hop', 'producer 25906 rap', 'pop', 'remix', 'bounce', 'house 25907 r&b', 'pop', 'reggaetón', 'latin urban', 'latin pop', 'latin music', 'en español 25908 pop', 'r&b', 'alternative r&b 25909 country 25910 pop', 'teen pop', 'ballad', 'synth-pop 25911 pop', 'soundtrack', 'en español', 'spanish pop', 'spanish urban', 'spanish music 25912 rap', 'remix 25913 pop', 'dominican republic', 'puerto rico', 'reggaetón', 'en español', 'latin urban', 'latin music', 'latin pop 25914 rap', 'atlanta', 'trap 25915 rap', 'memphis', 'drill', 'chicago drill', 'trap 25916 r&b', 'rap', 'soul rap', 'alternative r&b 25917 rap', 'trap 25918 rap', 'conscious hip-hop', 'politics', 'canada', 'american underground 25919 rap', 'pop', 'east coast', 'new york', 'pop rap 25920 rap 25921 rap', 'trap', 'memphis 25922 rap', 'chicago rap', 'trap', 'gangsta rap', 'chicago drill', 'drill 25923 country', 'pop 25924 rap', 'r&b', 'dmv 25925 rap', 'memphis', 'trap', 'atlanta 25926 rap', 'trap', 'underground hip-hop', 'dirty south 25927 r&b', 'rap', 'trap', 'alternative r&b', 'remix 25928 pop', 'reggaetón', 'latin music', 'latin urban', 'puerto rico', 'en español', 'latin pop 25929 pop 25930 r&b', 'rap', 'soul rap', 'soul', 'trap', 'east coast 25931 rap', 'r&b', 'new york', 'atlanta', 'east coast', 'trap 25932 pop', 'country', 'pop-rock', 'singer-songwriter', 'teen pop', 'pop country 25933 pop', 'tropical house', 'synth-pop', 'dance', 'dance-pop', 'uk 25934 rap', 'soul rap', 'soul', 'protest songs', 'jazz rap', 'conscious hip-hop', 'hip-hop 25935 rap', 'australia 25936 r&b', 'easy listening', 'chill', 'alternative r&b', 'alternative', 'soul pop', 'soul 25937 r&b', 'easy listening', 'chill', 'neo soul', 'soul pop', 'alternative r&b', 'alternative', 'soul', 'ballad 25938 country 25939 rap', 'hip-hop', 'conscious hip-hop 25940 r&b 25941 r&b', 'pop', 'singer-songwriter 25942 rap', 'trap 25943 pop 25944 rap', 'east coast', 'hardcore hip-hop', 'trap 25945 country', 'piano', 'acoustic', 'ballad 25946 pop', 'dance-pop', 'dance', 'deep house', 'house', 'electro-pop', 'electronic', 'edm 25947 rap', 'new york', 'hip-hop', 'east coast', 'trap 25948 r&b', 'soul 25949 rap', 'gangsta rap', 'new york', 'new york drill', 'east coast', 'drill', 'trap 25950 rock', 'pop', 'video game', 'soundtrack', 'easy listening', 'cover 25951 country', 'pop country', 'pop-rock 25952 country', 'alternative r&b', 'pop country', 'singer-songwriter 25953 country 25954 country 25955 rap', 'canada', 'trap 25956 rap', 'atlanta', 'canada', 'trap 25957 rap', 'freestyle', 'canada', 'trap 25958 r&b', 'pop', 'soul pop', 'soul 25959 pop', 'singer-songwriter', 'canada 25960 rap', 'motown', 'trap', 'atlanta', 'hip-hop 25961 r&b', 'rap', 'pop', 'trap', 'pop rap 25962 rap', 'chicago drill', 'drill 25963 rap', 'emo rap', 'remix 25964 pop', 'country', 'rap', 'country rap', 'pop country 25965 r&b', 'rap', 'soul rap', 'soul', 'pop rap', 'florida rap', 'hip-hop 25966 pop', 'electro-pop', 'pop-rock', 'k-pop (케이팝)', 'k-solo', 'genius korea', 'edm', 'south korea', 'new zealand 25967 rap', 'deutsche übersetzung 25968 pop', 'chamber pop', 'electro-pop 25969 country', 'singer-songwriter 25970 rap', 'chicago drill', 'new york drill', 'new york', 'trap', 'drill', 'east coast 25971 pop', 'singer-songwriter', 'canada 25972 pop', 'türkçe çeviri 25973 pop', 'singer-songwriter', 'canada 25974 pop', 'ballad', 'drum & bass', 'soft rock', 'adult contemporary', 'canada 25975 pop', 'singer-songwriter', 'canada 25976 pop', 'singer-songwriter', 'canada 25977 pop', 'singer-songwriter', 'canada 25978 r&b', 'rap', 'soul rap', 'florida rap', 'soul 25979 rap', 'pop', 'jamaica', 'trap', 'singer-songwriter', 'canada 25980 pop', 'singer-songwriter', 'canada', 'nigeria 25981 pop', 'singer-songwriter', 'canada 25982 country 25983 pop', 'rap', 'flamenco', 'lgbtq+', 'hip-hop', 'atlanta 25984 rap 25985 rap', 'memphis', 'atlanta', 'trap 25986 pop', 'country', 'pop country', 'singer-songwriter 25987 rap', 'intro 25988 rap 25989 rap 25990 rap 25991 rap', 'trap', 'memphis 25992 rap 25993 rap 25994 rap 25995 rap 25996 rap', 'interlude 25997 rap 25998 rap 25999 pop', 'alternative pop', 'alternative', 'teen pop 26000 rap', 'atlanta', 'memphis', 'new york', 'trap', 'east coast 26001 r&b', 'pop', 'soul pop', 'ballad', 'adult contemporary 26002 r&b', 'pop', 'synth-pop', 'electro-pop', 'trap', 'singer-songwriter 26003 rap', 'trap 26004 pop', 'k-japanese', 'south korea', 'genius korea', 'boy band', 'japanese', 'j-pop', 'soundtrack 26005 pop', 'country', 'singer-songwriter', 'pop country 26006 pop', 'adult contemporary', 'ballad', 'eurovision', 'nederland 26007 rap', 'chicago rap', 'acoustic', 'trap 26008 rock', 'pop', 'country', 'teen pop', 'pop-rock', 'singer-songwriter', 'pop country 26009 pop', 'country', 'teen pop', 'singer-songwriter', 'pop country 26010 pop', 'country', 'bubblegum pop', 'teen pop', 'singer-songwriter', 'pop country 26011 rap', 'gangsta rap', 'trap 26012 pop', 'rock', 'psychedelic rock', 'psychedelic', 'alternative rock', 'alternative', 'alternative pop', 'synth-pop', 'pop-punk', 'new wave', 'post-punk revival', 'dance punk', 'indie rock', 'pop-rock 26013 pop', 'country', 'ballad', 'teen pop', 'singer-songwriter', 'pop country 26014 rock', 'pop', 'country', 'pop-rock', 'teen pop', 'singer-songwriter', 'pop country 26015 rap', 'русский перевод (russian translation) 26016 rap', 'atlanta', 'trap 26017 rap', 'русский перевод (russian translation) 26018 rap', 'türkçe çeviri 26019 rap', 'east coast', 'atlanta', 'trap 26020 rap', 'trap', 'atlanta 26021 rap', 'trap 26022 rap', 'русский перевод (russian translation) 26023 rap 26024 rap 26025 rap', 'memphis 26026 country', 'rap', 'latin music', 'latin urban', 'regional mexicano', 'méxico', 'country rap', 'hip-hop', 'en español 26027 r&b', 'alternative r&b', 'dmv 26028 rap', 'trap 26029 rap', 'memphis 26030 country', 'pop country 26031 pop', 'dance', 'indie', 'alternative pop', 'radio', 'alternative', 'mental health 26032 rap', 'memphis', 'trap 26033 pop', 'ambient', 'americana', 'alternative pop', 'folk pop', 'folk', 'ballad 26034 rap', 'tradução em português 26035 rap', 'русский перевод (russian translation) 26036 rap', 'posse cut', 'atlanta', 'rap rock', 'dirty south', 'trap 26037 pop', 'rap', 'tradução em português 26038 rap', 'atlanta', 'trap 26039 country 26040 r&b', 'rap', 'pop rap', 'trap', 'atlanta 26041 rap', 'tradução em português 26042 rap', 'trap 26043 rap', 'gangsta rap', 'trap', 'memphis 26044 country 26045 rap 26046 r&b', 'rap', 'soul', 'gospel', 'soul rap', 'intro', 'hip-hop 26047 rap', 'conscious hip-hop', 'interlude 26048 rap', 'rage', 'pop rap', 'cloud rap', 'hip-hop', 'atlanta', 'trap 26049 pop', 'rock', 'synth-pop', 'new wave', 'pop-rock', 'uk 26050 rap', 'trap 26051 pop', 'pop-rock 26052 r&b', 'rap', 'alternative r&b 26053 country 26054 rock', 'pop', 'emo pop', 'emo', 'alternative pop', 'pop-punk', 'pop-rock', 'teen pop 26055 rap 26056 rap', 'hip-hop', 'trinidad & tobago', 'canada 26057 rap 26058 rap', 'battle rap 26059 rap 26060 rap', 'atlanta', 'trap 26061 rap', 'trinidad & tobago 26062 pop', 'dark pop 26063 r&b', 'rap', 'pop', 'pop rap', 'trap', 'atlanta 26064 rap', 'trap 26065 rap', 'trinidad & tobago 26066 country 26067 rap', 'freestyle', 'patois', 'jamaica', 'trinidad & tobago', 'dancehall', 'remix 26068 pop', 'electro-pop', 'funk', 'k-pop (케이팝)', 'south korea', 'genius korea', 'dance-pop', 'dance', 'boy band 26069 pop', 'folk pop', 'piano', 'ballad 26070 rock', 'pop', 'garage punk', 'alternative rock', 'alternative', 'pop-punk', 'pop-rock', 'teen pop 26071 pop', 'folk pop', 'contemporary folk', 'acoustic', 'ballad 26072 pop', 'soul pop', 'ballad', 'piano 26073 pop', 'folk pop', 'acoustic', 'ballad 26074 pop', 'adult contemporary', 'ballad', 'piano 26075 rock', 'pop', 'alternative', 'pop-rock', 'teen pop 26076 pop', 'folk pop', 'lo-fi', 'ballad', 'lgbtq+ 26077 rap', 'chicago rap', 'trap 26078 rap', 'dance', 'electro-hop', 'dirty south', 'east coast 26079 r&b', 'pop', 'mental health', 'alternative r&b', 'lgbtq+ 26080 rap', 'atlanta', 'trap 26081 rap', 'new york', 'pop rap', 'trap 26082 rap', 'electro-hop', 'hardcore hip-hop', 'trap', 'remix 26083 rap', 'florida rap', 'trap 26084 pop', 'dance', 'synth-pop', 'puerto rico', 'en español', 'latin urban', 'latin pop', 'latin music 26085 country 26086 rap', 'hip-hop', 'atlanta', 'trap 26087 pop', 'japanese', 'reggaetón', 'puerto rico', 'en español', 'latin pop', 'latin urban', 'latin music 26088 rap', 'chicago rap', 'atlanta', 'trap 26089 r&b', 'pop', 'rap', 'west coast', 'alternative pop', 'chill 26090 rock', 'r&b', 'pop', 'singer-songwriter', 'soul', 'alternative rock', 'soft rock', 'alternative r&b', 'trip-hop', 'neo soul', 'alternative pop', 'alternative 26091 rap', 'chicago rap', 'atlanta', 'trap 26092 rap', 'chicago rap', 'atlanta', 'trap 26093 rap', 'chicago rap', 'atlanta', 'trap 26094 rap', 'chicago rap', 'atlanta', 'trap 26095 rap', 'chicago rap', 'atlanta', 'trap 26096 rap', 'chicago rap', 'atlanta', 'trap 26097 rap', 'chicago rap', 'trap', 'atlanta 26098 rap', 'chicago rap', 'atlanta', 'trap 26099 rap', 'chicago rap', 'atlanta', 'trap 26100 rap', 'chicago rap', 'atlanta', 'trap 26101 rap', 'underground hip-hop', 'hip-hop', 'politics', 'canada 26102 rap', 'chicago rap', 'atlanta', 'trap 26103 rap', 'chicago rap', 'atlanta', 'trap 26104 rap', 'chicago rap', 'atlanta', 'trap 26105 rap', 'chicago rap', 'atlanta', 'trap 26106 rap', 'posse cut', 'trap', 'canada', 'atlanta 26107 rap', 'dirty south', 'bounce 26108 pop', 'rap', 'chicago rap', 'chicago drill', 'trap', 'australia 26109 rap', 'jazz', 'atlanta', 'trap 26110 rap', 'r&b', 'pop', 'alternative pop', 'alternative r&b', 'cloud rap', 'trap', 'pop rap 26111 rap', 'chicago rap', 'trap', 'emo trap', 'emo rap', 'hip-hop 26112 rap', 'chicago rap', 'intro', 'trap 26113 rap', 'atlanta', 'trap 26114 rap', 'chicago rap', 'trap 26115 pop', 'adult alternative', 'folk', 'easy listening', 'alternative pop', 'folk pop', 'new zealand 26116 rap', 'posse cut', 'atlanta', 'trap 26117 rap', 'posse cut', 'trap', 'new york', 'east coast', 'atlanta 26118 rap', 'chicago rap', 'gangsta rap', 'new york drill', 'new york', 'chicago drill', 'east coast', 'drill 26119 r&b', 'rap', 'florida rap', 'chicago rap', 'trap 26120 rap', 'chicago rap', 'trap 26121 rap', 'chicago rap', 'gangsta rap 26122 pop', 'rock', 'alternative', 'pop-rock', 'alternative rock', 'pop-punk 26123 rap', 'chicago rap 26124 pop', 'reggaetón', 'puerto rico', 'en español', 'latin urban', 'latin music', 'latin pop 26125 rap', 'chicago rap', 'conscious hip-hop', 'gangsta rap', 'trap 26126 pop', 'dance-pop', 'synth-pop', 'dance 26127 rap', 'trap 26128 country', 'pop country', 'singer-songwriter 26129 country 26130 country 26131 rap', 'hip-hop', 'boom bap', 'hardcore hip-hop', 'west coast 26132 country', 'singer-songwriter 26133 pop', 'synth-pop', 'house', 'singer-songwriter', 'dance-pop', 'uk 26134 pop', 'r&b', 'alternative r&b', 'canada 26135 r&b', 'rap', 'new jack swing', 'g-funk', 'west coast', 'hip-hop', 'soul', 'neo soul 26136 r&b', 'pop', 'rap', 'alternative pop', 'alternative', 'pop rap', 'alternative r&b', 'trap', 'hip-hop 26137 rap', 'tradução em português 26138 rap', 'traduzione italiana 26139 rap', 'hardcore hip-hop', 'psychedelic soul', 'psychedelic', 'bossa nova', 'west coast', 'jazz rap', 'hip-hop 26140 rap', 'sea shanty', 'east coast', 'memes', 'trap 26141 rap', 'experimental hip-hop', 'funk', 'boom bap', 'west coast', 'hip-hop', 'hardcore hip-hop 26142 r&b', 'pop', 'alternative', 'alternative pop', 'trap', 'alternative r&b 26143 rap', 'intro', 'experimental hip-hop', 'jazz rap', 'soul', 'psychedelic', 'hardcore hip-hop', 'hip-hop', 'west coast 26144 rap', 'pop', 'r&b', 'experimental hip-hop', 'synth-pop', 'hip-hop', 'west coast', 'psychedelic soul', 'neo soul 26145 rap', 'neo soul', 'west coast', 'hip-hop 26146 rap', 'traducción al español 26147 rock', 'adult contemporary', 'adult alternative', 'alternative rock', 'funk rock', 'pop-rock', 'cover', 'italy 26148 rap', 'tradução em português 26149 rap', 'r&b', 'pop', 'adult alternative', 'alternative dance', 'dance-pop', 'dance', 'alternative pop', 'alternative', 'tropical house', 'house', 'island music', 'alternative r&b', 'pop rap', 'afrobeats 26150 pop', 'rap', 'alternative', 'memes', 'satire', 'synth-pop', 'dance-pop', 'dance', 'hip-hop', 'trap', 'alternative pop', 'pop rap 26151 rap', 'hip-hop', 'west coast', 'boom bap', 'psychedelic soul 26152 rap', 'traducción al español 26153 country', 'politics', 'singer-songwriter 26154 r&b', 'rap', 'canada 26155 rock', 'türkçe çeviri 26156 rap', 'east coast', 'new york 26157 r&b', 'rock', 'pop', 'roots', 'dance rock', 'dance-pop', 'dance', 'soul pop', 'soul', 'alternative', 'pop-rock 26158 country', 'folk rock', 'singer-songwriter 26159 country', 'pop country 26160 country 26161 pop', 'k-pop (케이팝)', 'dance-pop', 'genius korea', 'boy band', 'south korea', 'dance 26162 rock', 'pop', 'new wave', 'teen pop', 'pop-rock', 'synth-pop', 'australia', 'canada 26163 rap', 'trap 26164 rap', 'trinidad & tobago', 'hip-hop', 'east coast', 'pop rap', 'trap', 'remix 26165 r&b', 'pop', 'dark pop', 'industrial', 'trance', 'bass music', 'electro-pop', 'alternative r&b', 'alternative pop', 'alternative', 'electronic 26166 pop', 'panamá', 'puerto rico', 'remix', 'en español', 'latin music', 'latin urban', 'latin pop', 'reggaetón 26167 rap', 'soundtrack', 'trap', 'latin trap', 'puerto rico', 'latin urban', 'en español', 'latin music 26168 country', 'pop country', 'singer-songwriter 26169 rap', 'r&b', 'traducción al español 26170 rap', 'türkçe çeviri 26171 rap', 'traducción al español 26172 rap', 'detroit', 'atlanta', 'gangsta rap', 'new york drill', 'east coast', 'drill', 'trap 26173 r&b', 'rap', 'new york', 'hip-hop', 'trap 26174 rap', 'tradução em português 26175 rap', 'gangsta rap', 'east coast', 'new york', 'trap 26176 r&b', 'rap', 'new york', 'gangsta rap', 'trap 26177 r&b', 'rap', 'drill', 'new york drill', 'east coast', 'new york 26178 pop', 'electronic', 'electro-pop', 'electro', 'alternative dance', 'synth-pop', 'dance', 'dance-pop', 'nu disco', 'uk 26179 rap', 'gangsta rap', 'remix', 'east coast', 'new york drill', 'new york', 'drill 26180 pop', 'rap', 'pop rap', 'hip-hop', 'atlanta', 'trap 26181 country 26182 rap', 'pop', 'trap', 'hip-hop 26183 pop', 'salsa', 'latin pop 26184 rap', 'canada 26185 pop', 'guaracha', 'electro house', 'electronica', 'electro', 'electro-pop', 'en español', 'puerto rico', 'latin pop', 'latin urban', 'latin music 26186 pop', 'r&b', 'rap', 'atlanta', 'canada', 'trap 26187 rap 26188 country', 'singer-songwriter 26189 rap', 'atlanta 26190 pop', 'rap', 'australia 26191 rock', 'pop', 'neo soul', 'folk', 'soul', 'alternative pop', 'alternative rock', 'pop-rock', 'grunge', 'contemporary folk', 'noise pop 26192 r&b', 'pop', 'nu disco', 'soul pop', 'funk', 'soul 26193 pop', 'intro', 'soul', 'singer-songwriter', 'synth-pop', 'alternative', 'space', 'ambient', 'alternative pop', 'soul pop', 'ballad 26194 r&b', 'pop', 'lounge', 'alternative', 'bedroom pop', 'alternative pop', 'alternative r&b', 'downtempo', 'bossa nova 26195 r&b', 'pop', 'alternative', 'bass music', 'house', 'techno', 'alternative r&b', 'industrial', 'electro-pop', 'electronic', 'dance-pop', 'alternative pop 26196 r&b', 'pop', 'singer-songwriter', 'alternative', 'dubstep', 'trip-hop', 'alternative r&b', 'electro-pop', 'alternative pop', 'electronic 26197 rap', 'r&b', 'atlanta', 'dmv 26198 r&b', 'pop', 'soul', 'alternative r&b', 'alternative pop', 'alternative', 'soul pop', 'ballad', 'piano 26199 rap 26200 country 26201 rap', 'underground hip-hop', 'hip-hop 26202 pop', 'hi-nrg', 'dance-pop', 'house', 'synth-pop', 'canada', 'nu disco', 'synthwave 26203 rap', 'memphis', 'trap 26204 rap', 'east coast', 'hardcore hip-hop', 'hip-hop', 'remix 26205 rap', 'atlanta', 'trap 26206 country 26207 rap 26208 rock', 'pop', 'pop-rock 26209 country', 'memorial', 'ballad 26210 rap 26211 rap', 'pop', 'pop rap', 'trap', 'soul pop 26212 pop', 'rock', 'emo pop', 'piano', 'pop-rock', 'emo revival', 'punk revival', 'piano rock', 'alternative', 'emo', 'alternative rock', 'pop-punk', 'rap rock 26213 r&b', 'rap', 'florida rap', 'hip-hop', 'gangsta rap', 'trap 26214 rock', 'alternative', 'grunge', 'pop-punk', 'pop-rock 26215 pop', 'dance-pop', 'dance', 'remix', 'uk 26216 rap', 'underground hip-hop', 'politics', 'hip-hop 26217 r&b', 'pop', 'ballad', 'synth-pop', 'dance-pop', 'soul pop', 'electro-pop 26218 r&b 26219 pop', 'country', 'singer-songwriter', 'pop country 26220 pop', 'puerto rico', 'canada 26221 rap', 'electronic trap', 'electronic', 'trap', 'freestyle 26222 rap', 'tradução em português 26223 rap 26224 rap', 'русский перевод (russian translation) 26225 pop', 'canada', 'electronic 26226 country', 'singer-songwriter 26227 pop', 'folk pop', 'memorial', 'singer-songwriter', 'ballad', 'uk 26228 rap', 'rage', 'electronic trap', 'electronic', 'atlanta', 'trap 26229 pop', 'ballad 26230 rap 26231 rap', 'unreleased 26232 rap 26233 rap', 'hardcore hip-hop', 'rage', 'florida rap', 'trap 26234 rap', 'pop rap', 'atlanta', 'trap 26235 rap 26236 rap', 'chicago rap', 'cloud rap', 'christian rap', 'christian', 'gospel', 'conscious hip-hop', 'pop rap', 'alternative r&b', 'atlanta', 'canada', 'trap 26237 rock', 'rap', 'new york', 'chicago rap', 'album-oriented rock (aor)', 'neo soul', 'alternative rock', 'experimental rock', 'experimental', 'christian rock', 'pop rap', 'rap rock', 'pop-rock', 'christian rap', 'christian', 'experimental hip-hop 26238 rap', 'chicago drill', 'chicago rap', 'religion', 'hip-hop', 'hardcore hip-hop', 'christian rap', 'christian', 'drill', 'trap', 'experimental hip-hop', 'conscious hip-hop', 'new york', 'new york drill', 'atlanta 26239 rap', 'chicago rap', 'cloud rap', 'ambient', 'trap', 'atlanta 26240 rap', 'pop rap', 'chicago rap', 'trap', 'atlanta 26241 pop', 'rock', 'r&b', 'alternative pop', 'pop-rock', 'dream pop', 'psychedelic rock', 'experimental', 'psychedelic', 'psychedelic soul', 'art pop', 'alternative r&b', 'interlude 26242 rap', 'hardcore hip-hop', 'trap', 'west coast 26243 pop', 'rap', 'chicago rap', 'dark pop', 'pop rap', 'trap', 'hip-hop', 'gospel', 'christian rap', 'christian 26244 rap', 'tradução em português 26245 rap', 'chicago rap', 'gospel', 'minimalism', 'trap', 'conscious hip-hop', 'christian rap', 'christian 26246 rap', 'memorial', 'chicago rap', 'christian', 'cloud rap', 'ambient', 'religion', 'christian rap 26247 r&b', 'rap', 'chicago rap', 'soul rap', 'electro-hop', 'electro house', 'alternative dance', 'neo soul', 'dance-pop', 'pop rap', 'house', 'hip-hop 26248 rap', 'chicago rap', 'choral music', 'techno', 'experimental', 'industrial hip-hop', 'experimental hip-hop', 'hip-hop', 'gospel', 'christian rap', 'christian 26249 r&b', 'rap', 'chicago rap', 'cloud rap', 'alternative r&b', 'experimental hip-hop', 'pop rap', 'atlanta', 'hip-hop', 'religion', 'experimental 26250 rap', 'chicago rap', 'experimental hip-hop', 'christian rap', 'christian 26251 r&b', 'christian r&b', 'religion', 'alternative r&b', 'christian', 'gospel 26252 r&b', 'rap', 'chicago rap', 'west coast', 'conscious hip-hop', 'neo soul', 'pop rap', 'christian rap', 'christian 26253 r&b', 'pop', 'outro', 'experimental', 'new age', 'alternative r&b', 'art pop', 'christian r&b', 'religion', 'gospel', 'christian 26254 r&b', 'christian r&b', 'ballad', 'piano', 'christian', 'speeches', 'religion', 'gospel 26255 rap', 'cloud rap', 'alternative r&b', 'boom bap', 'pop rap', 'conscious hip-hop', 'religion', 'christian rap', 'christian', 'hip-hop 26256 rap', 'christian rock', 'christian rap', 'christian', 'experimental hip-hop', 'rap rock', 'pop-rock', 'pop rap', 'experimental rock', 'experimental', 'remix 26257 rock', 'experimental pop', 'experimental rock', 'experimental', 'industrial rock', 'industrial metal', 'industrial', 'alternative metal', 'alternative', 'alternative pop', 'alternative rock', 'pop-punk 26258 rap', 'christian', 'gospel', 'synthwave', 'electro house', 'future bass', 'pop rap', 'electro-pop', 'christian rap', 'house 26259 rap', 'religion', 'christian rap', 'pop rap', 'conscious hip-hop', 'gospel', 'christian', 'hip-hop 26260 rap', 'r&b', 'pop', 'post-minimalism', 'alternative r&b', 'art pop', 'ballad', 'christian', 'piano', 'gospel', 'religion 26261 rap', 'remix', 'drill', 'new york drill', 'new york 26262 pop', 'dance', 'electro', 'electro house', 'electro-pop', 'patois', 'colombia', 'en español', 'latin pop', 'latin urban', 'latin music 26263 r&b', 'rap', 'memes', 'canada', 'atlanta', 'pop rap', 'trap 26264 rap', 'alternative', 'hip-hop', 'canada 26265 rap', 'tradução em português 26266 rap', 'traducción al español 26267 pop', 'rap', 'hip-hop', 'canada', 'trap 26268 r&b', 'rap', 'trap', 'hip-hop', 'canada 26269 r&b', 'rap', 'tradução em português 26270 rap', 'beef', 'trap', 'canada 26271 r&b', 'rap', 'trap', 'canada', 'atlanta 26272 r&b', 'rap', 'canada 26273 rap', 'canada 26274 r&b', 'rap', 'canada', 'hip-hop', 'trap 26275 rap', 'русский перевод (russian translation) 26276 r&b', 'memphis', 'canada', 'interlude', 'ballad 26277 rap', 'traducción al español 26278 rap', 'r&b', 'traducción al español 26279 r&b', 'canada 26280 r&b', 'rap', 'trap', 'canada 26281 rap', 'canada 26282 pop', 'singer-songwriter', 'dance-pop', 'uk 26283 rap', 'pop', 'r&b', 'alternative r&b', 'hip-hop', 'dance 26284 rap', 'experimental hip-hop', 'memes', 'west coast', 'trap 26285 rap', 'trap 26286 rock', 'pop', 'alternative rock 26287 pop', 'electro-pop', 'electronic', 'k-pop (케이팝)', 'korean', 'edm', 'k-solo', 'south korea', 'thailand', 'genius korea 26288 rock', 'r&b', 'pop', 'pop-rock', 'lgbtq+ 26289 pop', 'ballad', 'remix', 'synth-pop', 'alternative pop', 'downtempo 26290 rap', 'trap', 'pop rap 26291 rap', 'trap 26292 rap', 'pop rap', 'trap 26293 r&b', 'pop', 'african languages', 'afrika', 'nigerian pidgin', 'nigeria', 'afrobeats 26294 r&b', 'pop', 'folk pop', 'alternative pop', 'lgbtq+ 26295 r&b', 'rap', 'pop', 'piano', 'trap', 'atlanta 26296 rock', 'pop', 'garage rock', 'pop-punk', 'pop-rock 26297 pop', 'acoustic', 'ballad 26298 country', 'singer-songwriter 26299 rock', 'synth-pop', 'k-rock', 'korean', 'boy band', 'genius korea', 'south korea', 'electronic', 'uk', 'pop-rock 26300 rap', 'trap 26301 rap', 'trap 26302 rap', 'atlanta', 'trap 26303 rap', 'trap 26304 rap', 'trap 26305 rap', 'trap 26306 rap', 'trap 26307 rap', 'trap 26308 rap', 'trap 26309 rap', 'trap 26310 rap', 'trap 26311 rap', 'trap 26312 rap', 'trap 26313 pop', 'r&b 26314 rap', 'trap 26315 pop', 'r&b', 'rap', 'west coast', 'hip-hop 26316 rap', 'trap 26317 rap', 'intro 26318 rap', 'trap 26319 rap 26320 rap', 'trap 26321 pop', 'latin jazz', 'latin music', 'corrido', 'en español', 'regional mexicano 26322 rap', 'trap 26323 pop', 'rap', 'hardcore hip-hop', 'dark pop', 'pop rap', 'theme song', 'marvel', 'conscious hip-hop', 'hip-hop', 'soundtrack', 'detroit', 'trap 26324 pop', 'nu disco', 'k-pop (케이팝)', 'genius korea', 'south korea', 'girl group 26325 rap', 'east coast', 'trap 26326 rap 26327 rap', 'atlanta', 'trap 26328 r&b', 'rap 26329 pop', 'méxico', 'latin music', 'corrido', 'en español', 'regional mexicano 26330 country 26331 rap', 'deutsche übersetzung 26332 pop', 'latin pop', 'reggaetón', 'argentina', 'méxico', 'puerto rico', 'en español', 'latin urban', 'latin music 26333 rap', 'trap 26334 pop', 'adult alternative', 'adult contemporary', 'blue-eyed soul', 'singer-songwriter', 'soul', 'ballad', 'uk', 'piano 26335 r&b', 'canada 26336 country', 'mariachi', 'honky tonk', 'singer-songwriter 26337 country', 'pop country', 'singer-songwriter 26338 country', 'anthem', 'pop country 26339 pop', 'trap', 'alternative 26340 country 26341 pop 26342 country 26343 rap', 'chicago rap', 'trap', 'drill', 'chicago drill 26344 rap', 'politics', 'hip-hop', 'underground hip-hop 26345 rap', 'r&b', 'atlanta', 'alternative r&b', 'alternative', 'trap 26346 pop 26347 rock', 'pop', 'ballad', 'uk 26348 rap', 'pop rap', 'trap', 'atlanta 26349 pop', 'scandipop', 'scandinavia', 'sverige', 'dance-pop', 'synth-pop', 'canada', 'dance', 'electronic', 'edm 26350 rap', 'politics', 'hip-hop', 'underground hip-hop 26351 rap', 'trap', 'gangsta rap', 'new york drill', 'new york', 'east coast', 'drill 26352 rap', 'memphis 26353 rap', 'hip-hop 26354 rap', 'memphis 26355 rap', 'r&b', 'pop', 'east coast', 'rapcore', 'alternative pop', 'alternative r&b', 'pop rap', 'atlanta', 'hip-hop 26356 country', 'singer-songwriter 26357 rap', 'genius korea', 'trap', 'thailand 26358 country 26359 pop', 'alternative dance', 'dance-pop', 'synth-pop', 'uk 26360 rap', 'pop', 'new wave', 'experimental pop', 'pop-punk', 'emo pop', 'dark pop', 'alternative pop', 'emo rap', 'trap', 'pop rap 26361 rap 26362 rap', 'trap', 'dirty south', 'bounce 26363 pop 26364 pop', 'r&b', 'emo pop', 'emo', 'electro-pop', 'synth-pop', 'dance-pop', 'canada 26365 pop', 'r&b', 'funk', 'soul', 'soul pop 26366 rap', 'trap 26367 r&b', 'atlanta 26368 r&b', 'east coast', 'new york', 'atlanta', 'spoken word 26369 rap', 'cloud rap', 'trap 26370 r&b', 'atlanta 26371 r&b', 'atlanta 26372 rap', 'r&b', 'atlanta 26373 r&b', 'atlanta', 'neo soul', 'jazz 26374 r&b', 'atlanta 26375 r&b', 'atlanta 26376 r&b', 'atlanta 26377 r&b', 'atlanta 26378 rap 26379 r&b', 'atlanta 26380 r&b 26381 r&b', 'atlanta 26382 r&b', 'atlanta 26383 r&b', 'virginia', 'atlanta 26384 pop', 'ghana', 'afrobeats', 'latin pop', 'colombia', 'latin music', 'remix', 'en español 26385 country 26386 rap', 'gangsta rap', 'hip-hop', 'memphis', 'trap 26387 rap', 'florida rap', 'diss track', 'beef', 'gangsta rap', 'trap 26388 country', 'pop', 'pop country', 'singer-songwriter', 'pop-rock 26389 rock', 'pop', 'alternative rock', 'pop country', 'singer-songwriter', 'pop-rock 26390 rap', 'chicago rap', 'trap', 'hip-hop', 'emo rap 26391 pop', 'country', 'folk pop', 'folk', 'singer-songwriter', 'pop country 26392 country', 'pop', 'pop-rock', 'pop country', 'singer-songwriter 26393 country', 'ballad', 'folk', 'pop country', 'singer-songwriter 26394 pop', 'dance', 'dance-pop', 'electro-pop', 'pop country', 'singer-songwriter 26395 rock', 'pop', 'dubstep', 'pop-rock', 'singer-songwriter', 'electronic', 'pop country', 'dance-pop', 'adult contemporary', 'electro-pop', 'synth-pop 26396 pop', 'country', 'folk pop', 'folk', 'ballad', 'pop country', 'singer-songwriter', 'uk 26397 pop', 'rap', 'chicago rap', 'motown', 'remix', 'gangsta rap', 'pop rap', 'hardcore hip-hop', 'hip-hop', 'trap 26398 pop', 'country', 'ballad', 'cover', 'singer-songwriter', 'pop country 26399 pop', 'singer-songwriter', 'synth-pop', 'teen pop', 'bubblegum pop', 'dance-pop 26400 country', 'singer-songwriter 26401 country', 'pop', 'singer-songwriter', 'ballad', 'adult contemporary', 'folk pop', 'pop-rock 26402 country', 'rock', 'pop', 'pop-rock', 'singer-songwriter', 'pop country', 'bubblegum pop', 'teen pop', 'electronic', 'electro-pop', 'synth-pop', 'dance-pop 26403 country', 'pop', 'singer-songwriter', 'pop country', 'ballad', 'adult contemporary 26404 country', 'dance-pop', 'pop country', 'singer-songwriter 26405 country', 'pop', 'folk', 'singer-songwriter', 'adult contemporary', 'ballad', 'acoustic', 'uk', 'pop country', 'folk pop 26406 country', 'rock', 'pop', 'singer-songwriter', 'alternative', 'folk', 'adult contemporary', 'alternative rock', 'folk rock', 'ballad', 'adult alternative 26407 country', 'pop', 'bubblegum pop', 'adult contemporary', 'singer-songwriter', 'pop country 26408 r&b', 'p-funk', 'psychedelic soul', 'psychedelic', 'soul', 'funk 26409 pop', 'country', 'singer-songwriter', 'cover', 'pop country 26410 r&b', 'pop', 'psychedelic soul', 'art pop', 'psychedelic', 'soul 26411 country', 'rock', 'pop', 'power pop', 'pop-rock', 'pop country', 'adult contemporary', 'singer-songwriter 26412 country', 'pop', 'singer-songwriter', 'pop country', 'ballad', 'folk pop', 'adult contemporary', 'easy listening 26413 r&b', 'pop', 'soul pop', 'soul 26414 pop', 'country', 'singer-songwriter', 'ballad', 'pop country 26415 r&b', 'rap', 'pop', 'hip-hop', 'west coast', 'pop rap', 'funk 26416 country', 'rock', 'pop', 'ballad', 'singer-songwriter', 'pop country', 'orchestral', 'piano', 'adult contemporary', 'pop-rock 26417 country', 'pop', 'pop country', 'singer-songwriter', 'adult contemporary', 'pop-rock 26418 country', 'pop', 'dream pop', 'alternative rock', 'singer-songwriter', 'pop country', 'easy listening', 'adult contemporary', 'alternative', 'adult alternative', 'pop-rock', 'ballad', 'soft rock', 'alternative pop 26419 country', 'pop', 'singer-songwriter', 'pop country', 'alternative', 'adult contemporary', 'adult alternative', 'alternative pop 26420 country', 'pop', 'pop country', 'adult alternative', 'singer-songwriter 26421 pop', 'english translation 26422 r&b', 'pop', 'dance-pop', 'singer-songwriter', 'uk 26423 pop', 'singer-songwriter', 'uk 26424 pop', 'alternative', 'spoken word', 'singer-songwriter', 'alternative pop', 'uk 26425 pop', 'singer-songwriter', 'uk 26426 pop', 'singer-songwriter', 'adult contemporary', 'ballad', 'piano', 'uk 26427 pop', 'singer-songwriter', 'uk 26428 pop', 'singer-songwriter', 'uk 26429 pop', 'ballad', 'singer-songwriter', 'uk 26430 pop', 'punk rock', 'alternative', 'alternative rock', 'alternative pop', 'pop-punk', 'pop-rock', 'singer-songwriter 26431 r&b', 'pop', 'uk funky', 'swing', 'new jack swing', 'doo-wop', 'alternative pop', 'alternative r&b', 'uk r&b', 'soul pop', 'soul', 'neo soul', 'nu-jazz', 'swing jazz', 'soul jazz', 'jazz', 'piano', 'lo-fi', 'singer-songwriter', 'uk', 'interlude 26432 pop', 'singer-songwriter', 'uk 26433 r&b', 'pop', 'singer-songwriter', 'soul', 'uk 26434 rock', 'country', 'alternative country', 'alternative rock', 'singer-songwriter 26435 r&b', 'rap', 'hip-hop', 'trap 26436 country', 'holiday', 'christmas 26437 pop', 'holiday', 'adult contemporary', 'singer-songwriter', 'christmas 26438 pop', 'alternative pop 26439 r&b', 'neo soul', 'alternative r&b 26440 pop', 'rap', 'chicago rap', 'canada', 'pop rap', 'emo pop', 'emo trap', 'emo', 'trap', 'hip-hop', 'emo rap 26441 rap', 'chicago rap', 'drill', 'trap', 'chicago drill', 'atlanta 26442 pop', 'charity', 'singer-songwriter', 'uk', 'holiday', 'christmas 26443 rap', 'gangsta rap', 'atlanta', 'trap 26444 rap', 'chicago rap', 'trap 26445 rap', 'chicago rap', 'gangsta rap', 'trap', 'memphis 26446 pop', 'christmas 26447 r&b', 'dmv 26448 rap', 'chicago rap', 'trap 26449 rap', 'chicago rap', 'trap', 'emo', 'k-hip-hop', 'korean', 'south korea', 'genius korea', 'emo rap 26450 rap', 'chicago rap', 'emo trap', 'emo', 'emo rap', 'trap 26451 pop', 'retro', 'soundtrack', 'holiday', 'jazz', 'christmas 26452 rap', 'chicago rap', 'hardcore hip-hop', 'trap 26453 rap', 'chicago rap', 'trap', 'emo trap', 'emo rap 26454 rap', 'chicago rap', 'trap 26455 rap', 'chicago rap', 'pop rap', 'emo trap', 'emo rap', 'emo', 'trap 26456 rap', 'chicago rap', 'trap', 'hip-hop 26457 pop', 'rap', 'chicago rap', 'alternative rock', 'rap rock', 'dark pop', 'pop-rock', 'emo trap', 'trap', 'emo pop', 'emo', 'emo rap 26458 rap', 'new york', 'pop rap', 'trap 26459 rap', 'chicago rap', 'emo rap', 'pop rap', 'trap 26460 rap', 'chicago rap', 'pop rap', 'trap 26461 pop', 'rap', 'chicago rap', 'pop rap', 'emo trap', 'emo rap', 'emo', 'trap 26462 rap', ' ترجمه ی فارسی (farsi translation) 26463 pop', 'sixties', 'ballad', 'piano', 'holiday', 'christmas', 'jazz fusion', 'jazz 26464 rap', 'trap', 'west coast', 'outro 26465 pop', 'holiday', 'christmas 26466 rap', 'atlanta', 'west coast', 'drum & bass', 'jungle', 'trap 26467 rap', 'florida rap', 'west coast', 'atlanta', 'trap 26468 rap', 'west coast', 'trap 26469 pop', 'electronic', 'dance 26470 pop', 'colombia', 'salsa', 'latin pop', 'latin music', 'soundtrack', 'musicals', "children's music", 'disney 26471 pop', 'dance-pop', 'dance', 'colombia', 'latin pop', 'latin music', 'soundtrack', 'musicals', "children's music", 'disney 26472 pop', 'theme song', 'tv', 'k-ost', 'korean', 'ballad', 'k-solo', 'soundtrack', 'south korea', 'genius korea 26473 r&b', 'soul 26474 pop', 'ballad', 'feminism 26475 r&b 26476 country 26477 country 26478 pop', "children's music", 'musicals', 'soundtrack', 'disney', 'colombia 26479 pop', 'latin pop', 'latin music', 'colombia', 'soundtrack', 'musicals', "children's music", 'disney 26480 country', 'outlaw country', 'singer-songwriter', 'ballad 26481 pop', 'indie pop', 'indie 26482 pop', 'ballad', 'soundtrack', 'musicals', "children's music", 'disney 26483 pop', 'en español', 'musicals', 'soundtrack', "children's music", 'disney 26484 country 26485 country 26486 country 26487 rap 26488 rock 26489 country', 'singer-songwriter 26490 rap', 'tradução em português 26491 r&b', 'pop', 'electro', 'dark pop', 'electro-funk', 'electro-pop', 'electronica', 'nu disco', 'electronic', 'funk', 'synthwave', 'synth-pop', 'dance-pop', 'dance', 'canada 26492 rap', 'atlanta', 'trap 26493 rap', 'trap', 'atlanta 26494 r&b', 'pop', 'electro', 'freestyle', 'breakbeat', 'italo disco', 'dance', 'dance-pop', 'electronic', 'synthwave', 'synth-pop', 'canada 26495 r&b', 'pop', 'electronica', 'chill', 'chipmunk soul', 'electro', 'electro-pop', 'electronic', 'synthwave', 'synth-pop', 'canada 26496 pop', 'r&b', 'synthwave', 'vaporwave', 'soul', 'city pop', 'electronic', 'synth-pop', 'canada 26497 r&b', 'pop', 'electro-pop', 'alternative dance', 'alternative pop', 'alternative', 'alternative r&b', 'space', 'freestyle', 'italo disco', 'electronic', 'dance', 'dance-pop', 'synthwave', 'synth-pop', 'canada 26498 rap', 'trap', 'atlanta 26499 rap', 'traducción al español 26500 rap', 'atlanta', 'trap 26501 rap', 'florida rap', 'atlanta', 'trap 26502 rap', 'pop', 'r&b', 'soul pop', 'ambient', 'dream pop', 'synthwave', 'synth-pop', 'vaporwave', 'soul', 'pop rap', 'canada 26503 pop', 'r&b', 'nu disco', 'chill', 'italo disco', 'dream pop', 'new wave', 'electronic', 'synthwave', 'synth-pop', 'canada 26504 rap', 'atlanta', 'trap 26505 pop', 'r&b', 'synthwave', 'edm', 'electro-pop', 'alternative r&b', 'electronic', 'synth-pop', 'canada 26506 rap', 'atlanta', 'trap 26507 rap', 'pop', 'r&b', 'new jack swing', 'hip-hop', 'funk', 'freestyle', 'pop rap', 'electronic', 'dance', 'dance-pop', 'synthwave', 'synth-pop', 'canada 26508 country', 'rock pop 26509 r&b', 'pop', 'alternative r&b', 'spoken word', 'intro', 'ambient', 'electronic', 'radio', 'canada 26510 rap', 'atlanta', 'trap 26511 rap', 'atlanta', 'trap 26512 r&b', 'rap', 'pop rap', 'trap', 'atlanta 26513 pop', 'r&b', 'ambient', 'electronic', 'alternative r&b', 'synthwave', 'synth-pop', 'canada 26514 r&b', 'pop', 'electro-pop', 'alternative r&b', 'electro', 'edm', 'freestyle', 'electronic', 'synthwave', 'synth-pop', 'canada 26515 rap', 'pop rap', 'atlanta', 'trap 26516 r&b', 'rap', 'pop rap', 'dmv', 'atlanta', 'trap 26517 r&b', 'pop', 'synthwave', 'electro', 'vaporwave', 'electronic', 'radio', 'spoken word', 'interlude', 'neo-psychedelia', 'canada 26518 rap', 'canada', 'atlanta', 'trap 26519 rap', 'experimental hip-hop', 'trap', 'hip-hop', 'west coast 26520 r&b', 'rap', 'soul rap', 'florida rap', 'alternative r&b', 'trap 26521 rap', 'beef', 'diss track', 'trap 26522 r&b', 'rap', 'trap', 'dmv 26523 country 26524 rap', 'gangsta rap', 'trap 26525 country 26526 rap', 'trap', 'hip-hop', 'atlanta 26527 pop', 'soundtrack', "children's music", 'disney 26528 r&b', 'pop', 'electro-pop', 'electronic', 'synth-pop', 'dance 26529 rap', 'trap 26530 rap', 'trap 26531 rap', 'trap 26532 rap', 'memphis', 'memorial 26533 rap', 'beef', 'trap', 'diss track 26534 rap', 'trap 26535 rap', 'trap 26536 rap', 'diss track', 'beef', 'trap 26537 pop', 'r&b', 'singer-songwriter 26538 rap', 'trap 26539 rap', 'chicago rap', 'gangsta rap', 'atlanta', 'trap 26540 pop', 'dance', 'electronic', 'trap', 'electro-pop 26541 rap', 'hip-hop', 'conscious hip-hop', 'gangsta rap', 'boom bap', 'east coast 26542 pop 26543 country 26544 rap', 'dirty south', 'gangsta rap', 'trap', 'memphis 26545 rap', 'florida rap', 'emo rap', 'abstract rap', 'hip-hop', 'boom bap', 'chillhop', 'underground hip-hop 26546 pop 26547 pop', 'electro-pop', 'electronic', 'alternative pop', 'alternative 26548 pop', 'electro', 'electronic', 'nederland', 'electro-pop', 'edm', 'electro house', 'dance-pop', 'dance 26549 rap', 'producer', 'piano 26550 pop', 'soundtrack', 'latin pop', 'en español', 'latin urban', 'latin music', 'colombia', "children's music", 'disney 26551 rap', 'chicago rap', 'atlanta', 'drill', 'chicago drill 26552 rap', 'pop', 'emo trap', 'emo', 'alternative', 'emo pop', 'emo rap', 'acoustic', 'alternative pop', 'pop rap', 'trap 26553 pop', 'teen pop', 'canada 26554 rap', 'gangsta rap', 'dirty south', 'west coast 26555 pop', 'rock', 'emo pop', 'alternative', 'alternative rock', 'pop-rock', 'pop-punk 26556 rock', 'pop-rock', 'adult alternative', 'funk rock', 'covid-19', 'climate change', 'alternative', 'alternative rock 26557 rap', 'florida rap', 'east coast', 'new york', 'trap 26558 r&b 26559 pop', 'scandipop', 'sverige', 'scandinavia', 'progressive house', 'electro house', 'electronic', 'house', 'dance-pop', 'dance', 'electro-pop', 'electro 26560 pop', 'singer-songwriter', 'piano', 'uk', 'ballad', 'remix 26561 r&b', 'rap', 'pop rap', 'trap', 'atlanta 26562 r&b', 'rap', 'memorial', 'conscious hip-hop', 'electronic trap', 'electronic', 'drill', 'trap', 'pop rap', 'hip-hop', 'chicago drill', 'east coast', 'new york drill', 'new york 26563 pop', 'synth-pop', 'alternative pop', 'dark pop', 'alternative', 'lgbtq+', 'teen pop 26564 r&b', 'soul 26565 r&b', 'rap', 'alternative r&b 26566 pop', 'english translation', 'genius korea 26567 rap', 'hip-hop 26568 rap', 'chicago rap', 'hip-hop', 'gangsta rap', 'beef', 'trap', 'diss track', 'drill', 'chicago drill 26569 rap', 'atlanta', 'trap 26570 rap', 'hip-hop', 'trap 26571 pop', 'alternative', 'alternative pop 26572 country 26573 pop 26574 r&b', 'gospel', 'remix', 'soundtrack 26575 rap', 'beef', 'diss track', 'gangsta rap', 'trap 26576 rap', 'florida rap', 'gangsta rap', 'trap 26577 r&b', 'rap', 'florida rap', 'gangsta rap 26578 rap', 'drill', 'uk drill', 'uk rap', 'ghana', 'uk 26579 rap', 'meme rap', 'experimental', 'memes', 'experimental hip-hop', 'atlanta', 'trap 26580 pop', 'tradução em português 26581 rap 26582 rap', 'beef', 'diss track', 'atlanta', 'trap 26583 rap', 'chicago rap', 'drill', 'chicago drill 26584 pop', 'rap', 'emo', 'emo pop', 'alternative pop', 'emo rap', 'trap', 'emo trap', 'pop rap', 'hip-hop', 'alternative 26585 rap', 'east coast', 'trap 26586 rap', 'chicago rap', 'chicago drill', 'drill 26587 rap', 'chicago rap', 'east coast', 'new york drill', 'new york', 'chicago drill', 'drill 26588 rap', 'chicago rap', 'drill', 'chicago drill 26589 rap', 'chicago rap', 'drill', 'chicago drill', 'trap', 'memphis 26590 r&b', 'pop', 'rap', 'dirty south', 'trap', 'dance-pop', 'pop rap', 'uk 26591 rap', 'chicago rap', 'hip-hop', 'trap', 'memorial', 'atlanta 26592 rap', 'chicago rap', 'hip-hop', 'atlanta', 'trap 26593 rap', 'chicago rap', 'trap', 'hip-hop 26594 rap', 'chicago rap', 'trap', 'hip-hop', 'chicago drill', 'drill', 'gangsta rap 26595 rap', 'memphis', 'trap 26596 rock', 'chamber pop', 'nineties', 'slowcore', 'alternative', 'alternative rock', 'acoustic 26597 rap', 'chicago rap', 'trap 26598 rap', 'chicago rap', 'trap 26599 rap', 'chicago rap', 'hip-hop', 'intro 26600 rap', 'chicago rap', 'trap', 'hip-hop 26601 rap', 'chicago rap', 'gangsta rap', 'trap 26602 rap', 'chicago rap', 'trap 26603 rap', 'chicago rap', 'trap 26604 r&b', 'rap', 'chicago rap', 'atlanta 26605 rap', 'chicago rap 26606 rock', 'pop', 'alternative pop', 'pop-rock', 'alternative 26607 rap', 'east coast', 'new york', 'trinidad & tobago', 'gangsta rap', 'trap 26608 rap', 'dark trap', 'chicago blues', 'alternative', 'trap', 'emo trap', 'emo rap', 'emo 26609 rap', 'chicago rap', 'diss track', 'beef', 'chicago drill', 'drill 26610 country', 'pop country 26611 rock', 'deutschland 26612 rock', 'emo pop', 'pop-punk', 'pop-rock', 'alternative', 'alternative rock 26613 r&b', 'trap', 'neo soul 26614 rap', 'trap', 'electronic trap', 'electronic 26615 country', 'singer-songwriter 26616 pop
{' ترجمه ی فارسی (farsi translation)',
'33 1/3 series',
'a cappella',
'abstract rap',
'acid',
'acid jazz',
'acoustic',
'adult alternative',
'adult contemporary',
'african languages',
'afrika',
'afrobeat',
'afrobeats',
'album-oriented rock (aor)',
'alternative',
'alternative country',
'alternative dance',
'alternative metal',
'alternative pop',
'alternative r&b',
'alternative rock',
'ambient',
'american folk',
'american idol',
'american indian',
'american underground',
'americana',
'anime',
'anthem',
'anti-folk',
'arabia | عربي',
'arabic rap | راب عربي',
'argentina',
'art',
'art pop',
'art rock',
'art-punk',
'atlanta',
'aussie grime',
'aussie hip-hop',
'australia',
'autobiography',
'avant garde',
'avant-pop',
'axé',
'azərbaycan tərcümə',
'bachata',
'balada',
'ballad',
'ballad\', "children\'s music", \'musicals',
'ballad\', "children\'s music", \'piano',
'baroque pop',
'basketball',
'bass music',
'bassline',
'battle rap',
'bay area',
'bedroom pop',
'beef',
'belgië/belgique',
'big band',
'biography',
'black metal',
'blue note',
'blue-eyed soul',
'bluegrass',
'blues',
'blues rock',
'bolero',
'bolivia',
'boom bap',
'bossa nova',
'bounce',
'boy band',
'brasil',
'brass band',
'breakbeat',
'brill building',
'british folk',
'british rock',
'britpop',
'broadway',
'bubblegum pop',
'calypso',
'canada',
'canzone napoletana',
'cartoon',
'cartoon\', "children\'s music", \'en español',
'celtic',
'chamber music',
'chamber pop',
'chanson',
'charity',
'charity\', "children\'s music", \'disney',
'chart history',
'chicago blues',
'chicago drill',
'chicago rap',
'chile',
'chill',
'chillhop',
'chillout',
'chillstep',
'china',
'chipmunk soul',
'choral music',
'christian',
'christian metal',
'christian pop',
'christian r&b',
'christian rap',
'christian rock',
'christmas',
'christmas rap',
'cinematic',
'city pop',
'civil rights',
'clash',
'classical crossover',
'classical music',
'clean up',
'climate change',
'cloud rap',
'college rock',
'colombia',
'colombia\', "children\'s music", \'disney',
'comedy',
'commercial',
'concert',
'confessional poetry',
'congo',
'conscious hip-hop',
'conspiracy theory',
'contemporary folk',
'contemporary poetry',
'corrido',
'country',
'country rap',
'country\', "children\'s music", \'folk',
'cover',
'cover\', "children\'s music", \'musicals',
'cover\', "children\'s music", \'soundtrack',
'covid-19',
'crunk',
'cuba',
'cumbia',
'cypher',
'dab',
'dance',
'dance punk',
'dance rock',
'dance-pop',
'dancehall',
'danmark',
'dark ambient',
'dark pop',
'dark trap',
'dark wave',
'dc universe',
'death metal',
'deep house',
'demo',
'detroit',
'deutsche übersetzung',
'deutschland',
'deutschsprachiger pop',
'deutschsprachiger rap',
'deutschsprachiger rock',
'dipset',
'dirty south',
'disco',
'discography',
'disney',
'disney\', "children\'s music", \'soundtrack',
'disney\', "children\'s music", \'teen pop',
'diss track',
'dmv',
'dominican republic',
'doo-wop',
'doom metal',
'downtempo',
'dream pop',
'drill',
'drum & bass',
'drumstep',
'dub',
'dubstep',
'dungeon synth',
'east coast',
'easy listening',
'edm',
'education',
'eighties',
'electric blues',
'electro',
'electro house',
'electro-funk',
'electro-hop',
'electro-industrial',
'electro-pop',
'electro-soul',
'electro-swing',
'electronic',
'electronic rock',
'electronic trap',
'electronica',
'electronicore',
'em português',
'emo',
'emo pop',
'emo rap',
'emo revival',
'emo trap',
'en español',
'en français',
'english translation',
'estonia',
'euro house',
'euro reggae',
'euro-disco',
'eurodance',
'eurotrance',
'eurovision',
'experimental',
'experimental folk',
'experimental hip-hop',
'experimental pop',
'experimental rock',
'extreme metal',
'feminism',
'filipino',
'filk',
'filmographie',
'finnish rock',
'flamenco',
'florida rap',
'folk',
'folk pop',
'folk punk',
'folk rock',
'folktronica',
'food',
'football (american)',
'football (soccer)',
'france',
'freestyle',
'french pop',
'french r&b',
'french rap',
'french rock',
'funk',
'funk nacional',
'funk rock',
'funk-pop',
'future bass',
'future garage',
'future house',
'g-funk',
'gaming',
'gangsta rap',
'garage house',
'garage punk',
'garage rock',
'garage rock revival',
'genius korea',
'ghana',
'girl group',
'glam metal',
'glam rock',
'glitch',
'glitch hop',
'go-go',
'google',
'gospel',
'gothic metal',
'gothic rock',
'greece',
'grime',
'groove metal',
'grunge',
'guaracha',
'haiti',
'halloween',
'hard bass',
'hard rock',
'hardcore',
'hardcore hip-hop',
'heartland rock',
'heavy metal',
'hi-nrg',
'hip-hop',
'history',
'hockey',
'holiday',
'hong kong',
'honky tonk',
'horrorcore',
'house',
'hyperpop',
'hyphy',
'iceland',
'idm',
'indian',
'indie',
'indie electronic',
'indie folk',
'indie pop',
'indie rap',
'indie rock',
'industrial',
'industrial hip-hop',
'industrial metal',
'industrial rock',
'instrumental hip-hop',
'interlude',
'intro',
'iran',
'iranian rap',
'ireland',
'irish drill',
'isixhosa',
'isizulu',
'island music',
'israeli music',
'italian pop',
'italian rap',
'italo disco',
'italy',
'j-pop',
'j-rap',
'j-rock',
'jamaica',
'japan',
'japanese',
'jazz',
'jazz fusion',
'jazz rap',
'jazz rock',
'jazz-funk',
'jewish music',
'jump blues',
'jungle',
'k-ballad',
'k-hip-hop',
'k-idol-hip-hop',
'k-japanese',
'k-ost',
'k-pop (케이팝)',
'k-r&b',
'k-rock',
'k-solo',
'korean',
'krautrock',
'kwela',
'lambada',
'latin freestyle',
'latin freestyle edm',
'latin jazz',
'latin music',
'latin pop',
'latin rap',
'latin reggae',
'latin rock',
'latin trap',
'latin urban',
'lgbtq+',
'list',
'live',
'live broadcast',
'lo-fi',
'lounge',
'lovers rock',
'lullaby',
'lyric poetry',
'madchester',
'mambo',
'mariachi',
'marvel',
'mashup',
'medley',
'melodic hardcore',
'melodic metalcore',
'meme rap',
'memes',
'memes\', "children\'s music',
'memorial',
'memphis',
'mental health',
'merengue',
'meta',
'metal',
'metalcore',
'military',
'minecraft',
'minimalism',
'moombahton',
'motown',
'musicals',
'musicals\', "children\'s music", \'disney',
'musicals\', "children\'s music", \'soundtrack',
'musicals\', "children\'s music", \'teen pop',
'méxico',
'native american',
'nba',
'nederland',
'nederlandse vertaling',
'neo soul',
'neo-psychedelia',
'nerdcore',
'netflix',
'neue deutsche welle',
'new age',
'new jack swing',
'new orleans r&b',
'new wave',
'new york',
'new york drill',
'new zealand',
'news ',
'nigeria',
'nigerian pidgin',
'nigerian rap',
'nineties',
'nintendo',
'no wave',
'noise',
'noise pop',
'noise rock',
'norge',
'norsk',
'norsk pop',
'northern ireland',
'nu disco',
'nu-jazz',
'nu-metal',
'oi!',
'old style translation',
'olympics',
'opera',
'orchestral',
'orchestral\', "children\'s music", \'musicals',
'outlaw country',
'outro',
'p-funk',
'pagode baiano',
'panamá',
'parody',
'patois',
'persian',
'persian rock',
'philosophy',
'piano',
'piano rock',
'piano\', "children\'s music", \'disney',
'plugg',
'pluggnb',
'poetry',
'politics',
'polska',
'polska muzyka',
'polski rap',
'polski rock',
'polskie tłumaczenie (polish translation)',
'pop',
'pop country',
'pop rap',
'pop\', "children\'s music',
'pop\', "children\'s music", \'disney',
'pop\', "children\'s music", \'folk',
'pop\', "children\'s music", \'musicals',
'pop\', "children\'s music", \'theme song',
'pop-punk',
'pop-rock',
'pop-rock\', "children\'s music", \'cover',
'pop-rock\', "children\'s music", \'psychedelic',
'posse cut',
'post-britpop',
'post-dubstep',
'post-grunge',
'post-hardcore',
'post-metal',
'post-minimalism',
'post-punk',
'post-punk revival',
'post-rock',
'power metal',
'power pop',
'producer',
'progressive house',
'progressive metal',
'progressive metalcore',
'progressive rock',
'protest songs',
'proto-punk',
'psychedelic',
'psychedelic rock',
'psychedelic soul',
'puerto rico',
'punk revival',
'punk rock',
'québec',
'québec rap',
'r&b',
'race / ethnicity',
'radio',
'raga rock',
'rage',
'ragga',
'rap',
'rap metal',
'rap rock',
'rapcore',
'reality tv',
'red hot organization',
'reggae',
'reggae rock',
'reggaetón',
'regional mexicano',
'religion',
'remix',
'retro',
'road rap',
'rock',
'rock pop',
'rock\', "children\'s music", \'folk',
'rockabilly',
'romanticism literature',
'românia',
'roots',
'salsa',
'samba',
'satire',
'scandinavia',
'scandipop',
'science fiction',
'scotland',
'screamo',
'screen',
'sea shanty',
'sertanejo',
'setswana',
'seventies',
'shadyxv',
'shoegaze',
'short story',
'singer-songwriter',
'sixties',
'ska',
'ska punk',
'skate punk',
'slowcore',
'smooth jazz',
'soca',
'socialism',
'soft rock',
'soul',
'soul jazz',
'soul pop',
'soul rap',
'soundtrack',
'soundtrack\', "children\'s music',
'soundtrack\', "children\'s music", \'disney',
'south africa',
'south korea',
'southern rock',
'space',
'space rock',
'spanish music',
'spanish pop',
'spanish rap',
'spanish rock',
'spanish urban',
'speeches',
'speed metal',
'spoken word',
'sports',
'spotify singles',
'stax',
'stoner metal',
'stoner rock',
'suomi',
'surf',
'surf punk',
'surf rock',
'svensk pop',
'svensk rap',
'svensk rock',
'sverige',
'swing',
'swing jazz',
'switzerland',
'symphonic metal',
'symphonic rock',
'synth punk',
'synth rock',
'synth-pop',
'synthwave',
'tech',
'techno',
'teen pop',
'teen pop\', "children\'s music", \'disney',
'teen pop\', "children\'s music", \'musicals',
'thailand',
'the voice',
'theatre',
'theme song',
'thrash metal',
'time lord rock (trock)',
'traditional',
'traditional folk',
'traducción al español',
'traduction française',
'traduzione italiana',
'tradução em português',
'trance',
'translation',
'trap',
'trap metal',
'trapwave',
'tribal',
'trinidad & tobago',
'trip-hop',
'tropical house',
'tunisian rap | راب تونسي',
'turkey',
'tv',
'tv\', "children\'s music',
'tv\', "children\'s music", \'cover',
'tv\', "children\'s music", \'disney',
'tv\', "children\'s music", \'teen pop',
'türkiye',
'türkçe sözlü rap',
'türkçe çeviri',
'uk',
'uk drill',
'uk funky',
'uk garage',
'uk r&b',
'uk rap',
'underground hip-hop',
'unreleased',
'vaporwave',
'variété française',
'venezuela',
'video game',
'virginia',
'volksmusik',
'vtuber',
'wales',
'west coast',
'world music',
'worship',
'wrestling',
'yacht rock',
'year end list',
'young gang',
'youtube',
'zydeco',
'österreich',
'ελληνικη μεταφραση (greek translation)',
'россия (russia)',
'русский перевод (russian translation)',
'русский поп (russian pop)',
'русский рейв (russian rave)',
'русский рэп (russian rap)'}
Check if a song is non-english or doesn't have lyrics
for i in songData.index.values:
lyrics = " ".join([token for token in set(nltk.tokenize.word_tokenize(songData.lyrics[i])) if token.isalpha()])
if not lyrics:
# print("NO GUT HERE")
# print(song_data.artists[i])
# print(song_data.title[i],"\n")
songData = songData.drop(i)
continue
if langdetect.detect(lyrics) != "en":
print(i)
# print(song_data.artists[i])
# print(song_data.title[i])
# print(lyrics[:50],"\n")
songData = songData.drop(i)
# print(langdetect.detect(lyrics))
# break
35 112 207 344 354 457 466 475 497 660 662 733 758 770 808 823 861 875 956 1004 1083 1470 1545 1650 1691 1707 1994 2185 2239 2260 2493 2523 2587 2594 2817 2874 2898 2960 2995 3046 3064 3080 3194 3486 3679 3926 4179 4247 4250 4263 4653 4677 4710 4720 4757 5167 5369 6198 6208 6300 6321 6672 6735 6743 6825 6881 6968 7126 7299 7727 7838 8011 8118 8206 8264 8460 8865 8996 9015 9185 9201 9289 9482 9881 9986 10098 10118 10249 10278 10287 10366 10427 10470 10564 10806 10865 10930 11040 11100 11128 11171 11182 11461 11478 11653 12363 12641 12743 12912 12928 13501 13598 13950 14131 14838 14930 15396 15679 15847 15879 16417 16775 17631 17869 17892 18399 18453 18558 18633 18644 18657 18973 19117 19133 19149 19396 19761 19785 19930 20051 20185 20279 20448 20504 20542 20617 20669 20734 20823 21263 21302 21398 21429 21520 21525 21618 21628 21632 21636 21732 21735 21738 21744 21810 21814 21849 21911 21964 21970 21988 21990 22124 22127 22166 22256 22279 22287 22330 22335 22436 22452 22649 22711 22742 23109 23167 23170 23232 23458 23500 23526 23558 23587 23615 23618 23856 23916 23956 24136 24271 24422 24611 24672 24723 24743 24753 24764 24772 24779 24786 24793 24944 24981 25034 25083 25145 25402 25418 25529 25554 25561 25568 25612 25789 25900 25903 25968 25971 26023 26071 26105 26140 26160 26162 26236 26246 26278 26279 26282 26295 26298 26301 26317 26330 26365 26377 26400 26453 26454 26467 26479 26499 26512 26514 26527 26531 26541 26554 26568 26590 26595 26627 26652 26668 26679 26690 26694 26716 26717 26750 26753 26790 26799 26802 26819 26872 26908 26929 26935 26940 26947 27050 27087 27109 27154 27174 27175 27183 27190 27282 27318 27345 27361 27364 27385 27387 27396 27412 27493 27494 27496 27498 27499 27522 27572 27575 27577 27589 27595 27613 27617 27634 27651 27653 27656 27683 27686 27689 27698 27722 27728 27734 27743 27759 27769 27770 27778 27780 27782 27783 27785 27808 27826 27907 27908 27911 27931 27940 27969 27982 28021 28022 28029 28040 28060 28061 28082 28104 28110 28123 28141 28147 28151 28159 28205 28209 28252 28255 28256 28259 28261 28263 28269 28271 28272 28273 28275 28276 28278 28279 28280 28282 28283 28304 28306 28309 28337 28345 28380 28386 28402 28441 28448 28480 28492 28494 28495 28500 28504 28512 28513 28515 28519 28569 28573 28610 28624 28626 28634 28636 28640 28643 28657 28658 28660 28661 28662 28665 28677 28715 28717 28737 28755 28760 28761 28764 28770 28772 28773 28819 28827 28829 28830 28968 28990 28997 29006 29057 29090
Counting the amount of songs:
all_songs = set()
songs_count = {}
for i, art, tit in zip(songData.index.values, songData.artists, songData.title):
song = ', '.join(art) + ': ' + tit
if song in all_songs:
songs_count[song] += 1
#songData = songData.drop(i)
else:
songs_count[song] = 1
all_songs.add(song)
print("Amount of unique songs:", len(all_songs))
Amount of unique songs: 25757
Afterwards, we made a decision to remove all songs where the lyrics were longer than 10,000 characters. This was done because, in spite of all the aforementioned approaches to clean the data, e.g. entire book chapters by the French novelist Marcel Proust were still present in the dataset because they were labelled with the genre rap. The cut-off at 10,000 were chosen based on the fact that all songs we investigated that were longer, were songs that we clearly loaded in wrong. In addition to this, the 6-minute-long song Rap God by Eminem, where he flexes his ability to rap fast, contains 7,984 characters.
song_data = pd.read_pickle('songData_noduplicates.df')
print("Length of rap god (in characters):", len(song_data[song_data.title == 'Rap God'].lyrics.item()))
Length of rap god (in characters): 8003
for i in song_data.index.values:
title = song_data.title[i]
song_data.lyrics[i] = " ".join(song_data.lyrics[i].split("Lyrics")[1:])
for i in song_data.index.values:
if "\u200e" in song_data.lyrics[i]:
song_data.lyrics[i] = song_data.lyrics[i].replace('\u200e', '')
cut_list = ["genius users cypher", "world record"]
for cut in cut_list:
for i in song_data.index.values:
if cut in song_data.title[i].lower():
song_data = song_data.drop(i)
print(i, cut)
1491 genius users cypher 8166 genius users cypher 520 world record
lengths = [len(lyrics.split()) for lyrics in song_data.lyrics]
# lengths = sorted(lengths, reverse=True)
fig, axes = plt.subplots(dpi=135)
############# HISTOGRAM ##############
sns.histplot(ax=axes, x=lengths, kde=True, color='#3498DB', ls='--')
axes.grid(alpha = 0.1)
axes.axvline(np.mean(lengths), linewidth=1, color='#E74C3C', ls='--',
label=f'mean: {round(np.mean(lengths))}')
axes.set_title('Distribution of song lengths')
axes.set_xlabel('Length (in words)')
axes.legend(loc='upper right',
fancybox=True, shadow=True, ncol=1)
<matplotlib.legend.Legend at 0x16dea4365b0>
While doing a finer combing of the data, we also produced a blacklist for artists that we deemed unwanted in the data set. This list includes Glee Cast as they were present in over 200 songs, even though their songs are covers of other popular songs. The full list is seen here ['highest to lowest', 'marcel proust', 'watsky', 'glee cast', 'harttsick', 'eric the red', 'fabvl', 'c-mob', 'hampered'].
cut_list = ["highest to lowest", "marcel proust", 'watsky', 'glee cast', 'harttsick', 'eric the red', 'fabvl', 'c-mob', 'hampered']
for cut in cut_list:
for i in song_data.index.values:
if cut in song_data.artists[i]:
song_data = song_data.drop(i)
print(i, cut)
18949 highest to lowest 20270 highest to lowest 22582 highest to lowest 27884 highest to lowest 273 marcel proust 431 marcel proust 714 marcel proust 781 marcel proust 1150 marcel proust 1161 marcel proust 3835 marcel proust 5397 marcel proust 12741 marcel proust 13 watsky 10618 watsky 3160 glee cast 22934 glee cast 22950 glee cast 23060 glee cast 23078 glee cast 23079 glee cast 23084 glee cast 23087 glee cast 23095 glee cast 23096 glee cast 23108 glee cast 23117 glee cast 23124 glee cast 23145 glee cast 23155 glee cast 23157 glee cast 23158 glee cast 23159 glee cast 23171 glee cast 23172 glee cast 23181 glee cast 23193 glee cast 23194 glee cast 23198 glee cast 23202 glee cast 23326 glee cast 23327 glee cast 23328 glee cast 23329 glee cast 23332 glee cast 23334 glee cast 23335 glee cast 23337 glee cast 23341 glee cast 23342 glee cast 23344 glee cast 23346 glee cast 23350 glee cast 23356 glee cast 23359 glee cast 23360 glee cast 23361 glee cast 23362 glee cast 23366 glee cast 23368 glee cast 23369 glee cast 23370 glee cast 23373 glee cast 23376 glee cast 23377 glee cast 23382 glee cast 23383 glee cast 23386 glee cast 23391 glee cast 23404 glee cast 23406 glee cast 23408 glee cast 23409 glee cast 23411 glee cast 23416 glee cast 23418 glee cast 23419 glee cast 23423 glee cast 23424 glee cast 23532 glee cast 23533 glee cast 23534 glee cast 23535 glee cast 23536 glee cast 23542 glee cast 23544 glee cast 23547 glee cast 23548 glee cast 23549 glee cast 23550 glee cast 23559 glee cast 23560 glee cast 23561 glee cast 23563 glee cast 23564 glee cast 23565 glee cast 23566 glee cast 23573 glee cast 23574 glee cast 23575 glee cast 23576 glee cast 23580 glee cast 23581 glee cast 23609 glee cast 23625 glee cast 23627 glee cast 23628 glee cast 23629 glee cast 23638 glee cast 23639 glee cast 23648 glee cast 23649 glee cast 23661 glee cast 23663 glee cast 23664 glee cast 23665 glee cast 23671 glee cast 23673 glee cast 23674 glee cast 23716 glee cast 23717 glee cast 23718 glee cast 23727 glee cast 23728 glee cast 23729 glee cast 23731 glee cast 23732 glee cast 23734 glee cast 23741 glee cast 23743 glee cast 23750 glee cast 23752 glee cast 23753 glee cast 23771 glee cast 23772 glee cast 23774 glee cast 23779 glee cast 23787 glee cast 23788 glee cast 23790 glee cast 23791 glee cast 23792 glee cast 23793 glee cast 23794 glee cast 23831 glee cast 23832 glee cast 23836 glee cast 23837 glee cast 23838 glee cast 23840 glee cast 23849 glee cast 23851 glee cast 23854 glee cast 23855 glee cast 23862 glee cast 23863 glee cast 23865 glee cast 23867 glee cast 23869 glee cast 23871 glee cast 23875 glee cast 23879 glee cast 23881 glee cast 23885 glee cast 23887 glee cast 23889 glee cast 23894 glee cast 23896 glee cast 24044 glee cast 24045 glee cast 24049 glee cast 24056 glee cast 24065 glee cast 24069 glee cast 24100 glee cast 24114 glee cast 24119 glee cast 24123 glee cast 24124 glee cast 24125 glee cast 24137 glee cast 24138 glee cast 24140 glee cast 24143 glee cast 24144 glee cast 24147 glee cast 24149 glee cast 24151 glee cast 24152 glee cast 24155 glee cast 24160 glee cast 24187 glee cast 24189 glee cast 24190 glee cast 24191 glee cast 24192 glee cast 24200 glee cast 24201 glee cast 24202 glee cast 24203 glee cast 24204 glee cast 24208 glee cast 24212 glee cast 24220 glee cast 24222 glee cast 24228 glee cast 24231 glee cast 24232 glee cast 24233 glee cast 24236 glee cast 24288 glee cast 24292 glee cast 24305 glee cast 24308 glee cast 24313 glee cast 24429 glee cast 24458 glee cast 24561 glee cast 24830 glee cast 10846 harttsick 18069 eric the red 12442 fabvl 2447 c-mob 27494 hampered
for i in song_data.index.values:
if 'juice wrld' in song_data.artists[i]:
print(song_data.title[i])
print(len(song_data.lyrics[i]))
#song_data = song_data.drop(i)
Lost Love 769 Bandit 3007 She’s the One 1607 Juice WRLD Hour Freestyle of Fire Over Eminem Beats 50633 Tim Westwood Freestyle 63066 Wasted 3608 Sometimes 2554 Lucid Dreams 2820 All Girls Are the Same 1545 Legends 1765 NO BYSTANDERS 3381 Lean wit Me 1989 Fine China 2195 Jet Lag 4199 Astronauts 2548 Yacht Club 2239 Make It Back 1572 Armed and Dangerous 2575 1400 / 999 Freestyle 3005 Nuketown 3229 MoshPit 2543 Demons and Angels 2664 Roses 2285 Robbery 2110 Hear Me Calling 2010 Empty 2577 Fast 2625 Maze 1190 Flaws and Sins 2461 Hate Me 2780 6 Kiss 2509 Let Me Know (I Wonder Why Freestyle) 2401 Godzilla 5019 PTSD 3302 Righteous 1717 Flex 2713 Tell Me U Luv Me 2473 GO 2297 Wishing Well 2075 Conversations 1807 Hate the Other Side 2656 Blood On My Jeans 2307 Titanic 2080 Bad Energy 1701 Stay High 2123 Fighting Demons 1997 Up Up and Away 1636 Screw Juice 1447 I Want It 2083 Can’t Die 1679 Man of the Year 1477 Smile 1857 Blastoff 2016 Real Shit 2290 Reminds Me Of You 2126 Bad Boy 2947 Life’s a Mess II 2714 Matt Hardy 999 2760 Already Dead 2970 Wandered To LA 1931 Girl Of My Dreams 2423 Burn 2069 Feline 3632 Rockstar In His Prime 2230 You Wouldn’t Understand 2583 Doom 2238 Go Hard 1726 Not Enough 1884 From My Window 2198 Relocate 3249 Feel Alone 3278 Cigarettes 2836
i = -1
while True:
lengths = [len(lyrics) for lyrics in song_data.lyrics]
a = np.argsort(lengths)[-1]
index = song_data.index.values[a]
if len(song_data.lyrics[index]) < 10_000:
break
# print(len(song_data.lyrics[index]))
# print(song_data.artists[index])
# print(song_data.title[index])
# print(song_data.lyrics[index])
# print("="*100)
song_data = song_data.drop(index)
lengths = [len(lyrics.split()) for lyrics in song_data.lyrics]
# lengths = sorted(lengths, reverse=True)
# fig = plt.figure(dpi=135)
# plt.xlim(-1, max(lengths))
# plt.ylim(0, 1700)
# plt.title("Distribution of song lengths")
# plt.xlabel("Length (in characters)")
# plt.ylabel("Count")
# plt.hist(lengths, bins = 100, color='#3498DB', alpha=0.7)
# plt.vlines(np.mean(lengths), 0, 1800, colors='#E74C3C', alpha=0.7, label='Mean length')
# plt.legend()
# plt.savefig("../static/images/song_lengths.png", bbox_inches='tight')
# plt.show()
fig, axes = plt.subplots(dpi=135)
############# HISTOGRAM ##############
sns.histplot(ax=axes, x=lengths, kde=True, color='#3498DB', ls='--')
axes.grid(alpha = 0.1)
axes.axvline(np.mean(lengths), linewidth=1, color='#E74C3C', ls='--',
label=f'mean: {round(np.mean(lengths))}')
axes.set_title('Distribution of song lengths')
axes.set_xlabel('Length (in words)')
axes.legend(loc='upper right',
fancybox=True, shadow=True, ncol=1)
plt.savefig("../static/images/song_lengths_sns.png", bbox_inches='tight')
As mentioned earlier, after gathering the data, we had to separate all artists to work with them properly, though in some cases, this results in one artist being split up into multiple - as was the case with Earth, Wind & Fire. To mitigate this problem, we first calculated how many times each artist appeared in the data set and afterwards, for each artist, how many times they apperead with collaborating artists. Having known these values, we could then for each artist check which other artists they have collaborated with on all of their songs. Artists found using this method were then joined with an underscore, such that ['earth', 'wind', 'fire'] became ['earth_fire_wind'].
for i in song_data.index.values:
a = song_data.artists[i]
for j,artist in enumerate(a):
if ' (' in artist and ')' not in artist:
a.pop(j)
artist = artist.split(' (')[0].split(', ')
song_data.artists[i] = a + artist
print(artist)
print(song_data.title[i])
print('')
['anonymuz', 'archer'] Pokemon Cypher 2019 ['bobby thompson'] No, No, No ['1b2', 'ʞ|açe|wœ|k', 'ajrogers', '⛧andi malus⸸', 'ben rodriguez'] End of the World Cypher 2020 ['s.o.n.'] Thirteen ['robert michael'] Summer Love ['elliott with 2 ts', 'gottmik', 'kandy muse', 'lala ri', 'olivia lux', 'symone'] Condragulations (Cast Version) ['skeppy'] MUFFIN ['ghetto rock'] Respect The West ['bandokay', 'double lz', 'sj'] Westwood Crib Session (2019) ['frazer'] Demon King (Sukuna Rap) ['adriana calcanhotto', 'alceu valença', 'angélica'] Luz do Mundo ['big lou', 'buttatones', 'capo'] “Cypher Circuit” Cypher ['chosen few crew', 'cloud9 ninjaloc', 'd.craze', 'dead arm', 'dees', 'doze'] Real Time Cypher ['billie rose', 'billy green'] Big Village Cypher 2015 ['philip'] Kolkata Rap Cypher ['d&d'] WorldWide Choppers Big Remix ['k19', 'sen-sey'] Mortal Kombat ['z'] The Ward 2.0 ['ace hood', 'big sean', 'b.o.b', 'bun b', 'cory gunz', 'cory mo', 'cyhi the prynce', 'dose'] Racks (Remix) ['the discreet days'] She ['e.l. aitor', 'hermano l', 'kase.o', 'lírico', 'ossian'] TUTORIAL LA MIXTAPE ['curly'] Giant Joe and Curly freestyle ['the boyz'] More Bounce ['big nous', 'casual', 'hieroglyphics', 'hobo junction', 'jullie-d', 'king saan', 'mike t'] Hieroglyphics vs. Hobo Junction Freestyle Battle ['paul anthony'] All Cried Out ['marcia lewis'] Get a Life ["3d na'tee", 'aobie', 'az', 'big daddy kane', 'big dubez', 'billy danze', 'black thought', 'bodega bamz', 'bun b', 'bynoe', 'cassidy', 'chris rivers', 'chuck d', 'coke la rock', 'consequence', 'conway the machine', 'cory gunz', 'dave east', 'dj doo wop', 'drag-on', 'e-a-ski', 'e.d.i. mean', 'freddie foxxx', 'fredro\xa0starr', 'fred the godson', 'ghostface killah', 'gillie da kid', 'grandmaster caz', 'grandmaster melle mel', 'grand puba', 'greg nice', 'gunplay', 'havoc', 'hocus45th', 'ice-t', 'inspectah deck', 'jim jones', 'joell ortiz', 'jon connor', 'j.r. writer', 'junior reid', 'kaflow kaboom', 'king kirk', 'kool dj red alert', 'kool g rap', 'krs-one', 'kxng crooked', "lil' cease", "lil' fame", 'loaded lux', 'locksmith', 'lord jamar', 'lord tariq', 'maino', 'mcgruff', 'mc serch', 'mc shan', 'merkules', 'metta sandiford-artest', 'mike cee', 'millyz', 'mistah f.a.b.', 'ms. hustle', 'mysonne', 'nino man', 'omar epps', 'ot the real', 'oun-p', 'page kennedy', 'papoose', 'peter gunz', 'pretty tone capone', 'ptkny', 'raekwon', 'rah digga', 'ransom', 'ras kass', 'redman', 'rj payne', 'rock'] Rolling 110 Deep ["sav'o"] Who? ['the williams brothers'] Can’t Cry Hard Enough ['the boyz'] Got Me Waiting ['devers', 'ex’s'] Genius ['buddha'] Tooeloquent ['z'] Earth For Myself Pt. 2 ['adam warrock', 'beefy', 'billy the fridge', 'buc preston'] The Guest List ['babyface', 'barry white', 'portrait'] Slow Jams ['big mike', 'big pokey'] Won’t Let You Down (Texas Remix) ['adda'] Much Better ['2zer', 'alpha wann', 'askaan', 'framal', 'georgio', "hologram lo'", 'lanimal', "limsa d'aulnay", 'lomepal', 'nekfeu', 'pheno cryx', 'salim', 'say', 'sheldon', 'tino'] Grünt #11 ['breeton boi', 'gameboyjones', 'ham sandwich'] Isekai Rap Cypher ['anonymous'] Freak Out ['aaron carter', 'backstreet boys', 'blümchen', 'the boyz'] Let the Music Heal Your Soul ['lee perry'] Everybody’s Free (To Wear Sunscreen) ['solé'] Who Dat ['co'] Shut Up ['do'] Heaven ['lea'] Sunshine ['crunchy black', 'dj paul', 'juicy j', 'mr. bigg'] Poppin’ My Collar ['sean paul'] Snap Yo Fingers ['the d.e.y.'] Walk Away (Remember Me) ['d.o.e.'] The Way I Are ['rush'] Go Girl ['bono', 'the edge'] Rise Above 1 ['alessia cara', 'anne-marie', 'anthony ramos', 'camilo', 'evaluna montaner', 'finneas', 'fletcher', 'florida georgia line', 'h.e.r.', 'jason derulo', 'jordan davis', 'keith urban', 'kelsea ballerini', 'kesha', 'lindsey sterling', 'maeta', 'mau y ricky', 'niall horan', 'noah cyrus', 'pink sweat$', 'the rose'] If The World Was Ending ['ちゃんみな'] Best Friend (feat. Doja Cat) [Jamie & Chanmina Remix]
artist_count = defaultdict(lambda: 0)
artist_colab_count = defaultdict(lambda: defaultdict(lambda: 0))
for artists in song_data.artists:
for artist in artists:
artist_count[artist] += 1
for colab in artists:
if colab != artist:
artist_colab_count[artist][colab] += 1
artist_colab_count['wind']
defaultdict(<function __main__.<lambda>.<locals>.<lambda>()>,
{'earth': 31, 'fire': 31, 'ramsey lewis': 1})
artist_count['wind']
31
regroupings = set()
for artist_a, songs_a in artist_count.items():
colabs = [artist_a]
for artist_b, songs_b in artist_colab_count[artist_a].items():
if songs_b == artist_count[artist_b] == songs_a and songs_a > 2:
colabs.append(artist_b)
if len(colabs) > 1:
regroupings.add((songs_a, tuple(sorted(colabs))))
for i in song_data.index.values:
for num, group in regroupings:
if group[0] in song_data.artists[i]:
print(f'Artists before: {song_data.artists[i]}')
for g in group:
song_data.artists[i].remove(g)
song_data.artists[i].append("_".join(group))
print(f'Artists after: {song_data.artists[i]}')
print("")
Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['dick', 'dee dee'] Artists after: ['dee dee_dick'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['joey dee', 'the starliters'] Artists after: ['joey dee_the starliters'] Artists before: ['hank ballard', 'the midnighters'] Artists after: ['hank ballard_the midnighters'] Artists before: ['joey dee', 'the starliters'] Artists after: ['joey dee_the starliters'] Artists before: ['joey dee', 'the starliters'] Artists after: ['joey dee_the starliters'] Artists before: ['bob b. soxx', 'the blue jeans'] Artists after: ['bob b. soxx_the blue jeans'] Artists before: ['paul', 'paula'] Artists after: ['paul_paula'] Artists before: ['bob b. soxx', 'the blue jeans'] Artists after: ['bob b. soxx_the blue jeans'] Artists before: ['paul', 'paula'] Artists after: ['paul_paula'] Artists before: ['dick', 'dee dee'] Artists after: ['dee dee_dick'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['paul', 'paula'] Artists after: ['paul_paula'] Artists before: ['bob b. soxx', 'the blue jeans'] Artists after: ['bob b. soxx_the blue jeans'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['paul', 'paula'] Artists after: ['paul_paula'] Artists before: ['archie bell', 'the drells'] Artists after: ['archie bell_the drells'] Artists before: ['paul', 'paula'] Artists after: ['paul_paula'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['dick', 'dee dee'] Artists after: ['dee dee_dick'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['pete rock', 'c.l. smooth'] Artists after: ['c.l. smooth_pete rock'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['jesu', 'sun kil moon', 'jesu and sun kil moon'] Artists after: ['sun kil moon', 'jesu_jesu and sun kil moon'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['mitch ryder', 'the detroit wheels'] Artists after: ['mitch ryder_the detroit wheels'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['zion', 'lennox', 'ed sheeran'] Artists after: ['ed sheeran', 'lennox_zion'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['mitch ryder', 'the detroit wheels'] Artists after: ['mitch ryder_the detroit wheels'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['mitch ryder', 'the detroit wheels'] Artists after: ['mitch ryder_the detroit wheels'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['mitch ryder', 'the detroit wheels'] Artists after: ['mitch ryder_the detroit wheels'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['cass elliot', 'the mamas', 'the papas'] Artists after: ['cass elliot', 'the mamas_the papas'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['mitch ryder', 'the detroit wheels'] Artists after: ['mitch ryder_the detroit wheels'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['peter', 'gordon'] Artists after: ['gordon_peter'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['archie bell', 'the drells'] Artists after: ['archie bell_the drells'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['bobby taylor', 'the vancouvers'] Artists after: ['bobby taylor_the vancouvers'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['bobby taylor', 'the vancouvers'] Artists after: ['bobby taylor_the vancouvers'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['archie bell', 'the drells'] Artists after: ['archie bell_the drells'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['bobby taylor', 'the vancouvers'] Artists after: ['bobby taylor_the vancouvers'] Artists before: ['archie bell', 'the drells'] Artists after: ['archie bell_the drells'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['charles wright', 'the watts 103rd street rhythm band'] Artists after: ['charles wright_the watts 103rd street rhythm band'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['archie bell', 'the drells'] Artists after: ['archie bell_the drells'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['crosby', 'stills', 'nash'] Artists after: ['crosby_nash_stills'] Artists before: ['crosby', 'stills', 'nash'] Artists after: ['crosby_nash_stills'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['sérgio mendes', "brasil '66"] Artists after: ["brasil '66_sérgio mendes"] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['delaney', 'bonnie'] Artists after: ['bonnie_delaney'] Artists before: ['crosby', 'stills', 'nash', 'young'] Artists after: ['young', 'crosby_nash_stills'] Artists before: ['charles wright', 'the watts 103rd street rhythm band'] Artists after: ['charles wright_the watts 103rd street rhythm band'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['delaney', 'bonnie'] Artists after: ['bonnie_delaney'] Artists before: ['crosby', 'stills', 'nash', 'young'] Artists after: ['young', 'crosby_nash_stills'] Artists before: ['crosby', 'stills', 'nash', 'young'] Artists after: ['young', 'crosby_nash_stills'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['the first national band', 'michael nesmith'] Artists after: ['michael nesmith_the first national band'] Artists before: ['delaney', 'bonnie'] Artists after: ['bonnie_delaney'] Artists before: ['charles wright', 'the watts 103rd street rhythm band'] Artists after: ['charles wright_the watts 103rd street rhythm band'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['los incas', 'simon', 'garfunkel'] Artists after: ['los incas', 'garfunkel_simon'] Artists before: ['crosby', 'stills', 'nash', 'young'] Artists after: ['young', 'crosby_nash_stills'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['the first national band', 'michael nesmith'] Artists after: ['michael nesmith_the first national band'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['brewer', 'shipley'] Artists after: ['brewer_shipley'] Artists before: ['emerson', 'lake', 'palmer'] Artists after: ['palmer', 'emerson_lake'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['cornelius brothers', 'sister rose'] Artists after: ['cornelius brothers_sister rose'] Artists before: ['the first national band', 'michael nesmith'] Artists after: ['michael nesmith_the first national band'] Artists before: ['brewer', 'shipley'] Artists after: ['brewer_shipley'] Artists before: ['hamilton', 'joe frank', 'reynolds'] Artists after: ['hamilton_joe frank_reynolds'] Artists before: ['delaney', 'bonnie'] Artists after: ['bonnie_delaney'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['brenda', 'the tabulations'] Artists after: ['brenda_the tabulations'] Artists before: ['delaney', 'bonnie'] Artists after: ['bonnie_delaney'] Artists before: ['jesu', 'sun kil moon', 'jesu and sun kil moon'] Artists after: ['sun kil moon', 'jesu_jesu and sun kil moon'] Artists before: ['martha reeves', 'the vandellas'] Artists after: ['martha reeves_the vandellas'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['hamilton', 'joe frank', 'reynolds'] Artists after: ['hamilton_joe frank_reynolds'] Artists before: ['junior walker', 'the all stars'] Artists after: ['junior walker_the all stars'] Artists before: ['delaney', 'bonnie'] Artists after: ['bonnie_delaney'] Artists before: ['brewer', 'shipley'] Artists after: ['brewer_shipley'] Artists before: ['the mamas', 'the papas'] Artists after: ['the mamas_the papas'] Artists before: ['loggins', 'messina'] Artists after: ['loggins_messina'] Artists before: ['delaney', 'bonnie'] Artists after: ['bonnie_delaney'] Artists before: ['cornelius brothers', 'sister rose'] Artists after: ['cornelius brothers_sister rose'] Artists before: ['loggins', 'messina'] Artists after: ['loggins_messina'] Artists before: ['harold melvin', 'the blue notes'] Artists after: ['harold melvin_the blue notes'] Artists before: ['emerson', 'lake', 'palmer'] Artists after: ['palmer', 'emerson_lake'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['harold melvin', 'the blue notes'] Artists after: ['harold melvin_the blue notes'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['loggins', 'messina'] Artists after: ['loggins_messina'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['cornelius brothers', 'sister rose'] Artists after: ['cornelius brothers_sister rose'] Artists before: ['harold melvin', 'the blue notes'] Artists after: ['harold melvin_the blue notes'] Artists before: ['loggins', 'messina'] Artists after: ['loggins_messina'] Artists before: ['cornelius brothers', 'sister rose'] Artists after: ['cornelius brothers_sister rose'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['harold melvin', 'the blue notes'] Artists after: ['harold melvin_the blue notes'] Artists before: ['loggins', 'messina'] Artists after: ['loggins_messina'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['loggins', 'messina'] Artists after: ['loggins_messina'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['harold melvin', 'the blue notes'] Artists after: ['harold melvin_the blue notes'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['cheech', 'chong'] Artists after: ['cheech_chong'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['harold melvin', 'the blue notes'] Artists after: ['harold melvin_the blue notes'] Artists before: ['loggins', 'messina'] Artists after: ['loggins_messina'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['jesu', 'sun kil moon', 'jesu and sun kil moon'] Artists after: ['sun kil moon', 'jesu_jesu and sun kil moon'] Artists before: ['ramsey lewis', 'earth', 'wind', 'fire'] Artists after: ['ramsey lewis', 'earth_fire_wind'] Artists before: ['blood', 'sweat', 'tears'] Artists after: ['blood_sweat_tears'] Artists before: ['hamilton', 'joe frank', 'reynolds'] Artists after: ['hamilton_joe frank_reynolds'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['sharon paige', 'harold melvin', 'the blue notes'] Artists after: ['sharon paige', 'harold melvin_the blue notes'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['cheech', 'chong'] Artists after: ['cheech_chong'] Artists before: ['hamilton', 'joe frank', 'reynolds'] Artists after: ['hamilton_joe frank_reynolds'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['marilyn mccoo', 'billy davis jr.'] Artists after: ['billy davis jr._marilyn mccoo'] Artists before: ['harold melvin', 'the blue notes'] Artists after: ['harold melvin_the blue notes'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['cheech', 'chong'] Artists after: ['cheech_chong'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['marilyn mccoo', 'billy davis jr.'] Artists after: ['billy davis jr._marilyn mccoo'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['harold melvin', 'the blue notes'] Artists after: ['harold melvin_the blue notes'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['marilyn mccoo', 'billy davis jr.'] Artists after: ['billy davis jr._marilyn mccoo'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['crosby', 'stills', 'nash'] Artists after: ['crosby_nash_stills'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['crosby', 'stills', 'nash'] Artists after: ['crosby_nash_stills'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['ashford', 'simpson'] Artists after: ['ashford_simpson'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['ashford', 'simpson', 'chaka khan', 'quincy jones'] Artists after: ['chaka khan', 'quincy jones', 'ashford_simpson'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['ashford', 'simpson'] Artists after: ['ashford_simpson'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['peaches', 'herb'] Artists after: ['herb_peaches'] Artists before: ['captain', 'tennille'] Artists after: ['captain_tennille'] Artists before: ['england dan', 'john ford coley'] Artists after: ['england dan_john ford coley'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['simon', 'garfunkel'] Artists after: ['garfunkel_simon'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['ashford', 'simpson'] Artists after: ['ashford_simpson'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['crosby', 'stills', 'nash'] Artists after: ['crosby_nash_stills'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['crosby', 'stills', 'nash'] Artists after: ['crosby_nash_stills'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['crosby', 'stills', 'nash'] Artists after: ['crosby_nash_stills'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['crosby', 'stills', 'nash'] Artists after: ['crosby_nash_stills'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['ashford', 'simpson'] Artists after: ['ashford_simpson'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['cheech', 'chong'] Artists after: ['cheech_chong'] Artists before: ['rené', 'angela'] Artists after: ['angela_rené'] Artists before: ['rené', 'angela'] Artists after: ['angela_rené'] Artists before: ['emerson', 'lake', 'powell'] Artists after: ['powell', 'emerson_lake'] Artists before: ['rené', 'angela'] Artists after: ['angela_rené'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['ashford', 'simpson'] Artists after: ['ashford_simpson'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['dj jazzy jeff', 'the fresh prince'] Artists after: ['dj jazzy jeff_the fresh prince'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['robert englund', 'dj jazzy jeff', 'the fresh prince'] Artists after: ['robert englund', 'dj jazzy jeff_the fresh prince'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['dj jazzy jeff', 'the fresh prince'] Artists after: ['dj jazzy jeff_the fresh prince'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['crosby', 'stills', 'nash', 'young'] Artists after: ['young', 'crosby_nash_stills'] Artists before: ['dj jazzy jeff', 'the fresh prince'] Artists after: ['dj jazzy jeff_the fresh prince'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['dj jazzy jeff', 'the fresh prince'] Artists after: ['dj jazzy jeff_the fresh prince'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['zhané', 'dj jazzy jeff', 'the fresh prince'] Artists after: ['zhané', 'dj jazzy jeff_the fresh prince'] Artists before: ['cause', 'effect'] Artists after: ['cause_effect'] Artists before: ['pete rock', 'c.l. smooth'] Artists after: ['c.l. smooth_pete rock'] Artists before: ['cause', 'effect'] Artists after: ['cause_effect'] Artists before: ['pete rock', 'c.l. smooth', 'run–d.m.c.'] Artists after: ['run–d.m.c.', 'c.l. smooth_pete rock'] Artists before: ['dj jazzy jeff', 'the fresh prince'] Artists after: ['dj jazzy jeff_the fresh prince'] Artists before: ['earth', 'wind', 'fire'] Artists after: ['earth_fire_wind'] Artists before: ['teddy riley', 'dj jazzy jeff', 'the fresh prince'] Artists after: ['teddy riley', 'dj jazzy jeff_the fresh prince'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['cause', 'effect'] Artists after: ['cause_effect'] Artists before: ['huey lewis', 'the news'] Artists after: ['huey lewis_the news'] Artists before: ['david crosby', 'hootie', 'the blowfish'] Artists after: ['david crosby', 'hootie_the blowfish'] Artists before: ['crystal johnson', 'pete rock', 'c.l. smooth'] Artists after: ['crystal johnson', 'c.l. smooth_pete rock'] Artists before: ['hootie', 'the blowfish'] Artists after: ['hootie_the blowfish'] Artists before: ['hootie', 'the blowfish'] Artists after: ['hootie_the blowfish'] Artists before: ['hootie', 'the blowfish'] Artists after: ['hootie_the blowfish'] Artists before: ['zion', 'lennox'] Artists after: ['lennox_zion'] Artists before: ['hootie', 'the blowfish'] Artists after: ['hootie_the blowfish'] Artists before: ['hootie', 'the blowfish'] Artists after: ['hootie_the blowfish'] Artists before: ['big', 'rich'] Artists after: ['big_rich'] Artists before: ['big', 'rich'] Artists after: ['big_rich'] Artists before: ['big', 'rich'] Artists after: ['big_rich'] Artists before: ['hall', 'oates'] Artists after: ['hall_oates'] Artists before: ['big', 'rich'] Artists after: ['big_rich'] Artists before: ['aly', 'aj'] Artists after: ['aj_aly'] Artists before: ['kris kristofferson', 'big', 'rich'] Artists after: ['kris kristofferson', 'big_rich'] Artists before: ['aly', 'aj'] Artists after: ['aj_aly'] Artists before: ['jesu', 'sun kil moon', 'jesu and sun kil moon'] Artists after: ['sun kil moon', 'jesu_jesu and sun kil moon'] Artists before: ['aly', 'aj'] Artists after: ['aj_aly'] Artists before: ['big', 'rich'] Artists after: ['big_rich'] Artists before: ['aly', 'aj'] Artists after: ['aj_aly'] Artists before: ['aly', 'aj'] Artists after: ['aj_aly'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['victoria justice', 'victorious cast'] Artists after: ['victoria justice_victorious cast'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['victoria justice', 'victorious cast'] Artists after: ['victoria justice_victorious cast'] Artists before: ['victoria justice', 'victorious cast'] Artists after: ['victoria justice_victorious cast'] Artists before: ['big', 'rich'] Artists after: ['big_rich'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['maddie', 'tae'] Artists after: ['maddie_tae'] Artists before: ['big', 'rich'] Artists after: ['big_rich'] Artists before: ['jussie smollett', 'empire cast'] Artists after: ['empire cast_jussie smollett'] Artists before: ['jussie smollett', 'yazz', 'empire cast'] Artists after: ['yazz', 'empire cast_jussie smollett'] Artists before: ['estelle', 'jussie smollett', 'empire cast'] Artists after: ['estelle', 'empire cast_jussie smollett'] Artists before: ['mumford', 'sons'] Artists after: ['mumford_sons'] Artists before: ['maddie', 'tae'] Artists after: ['maddie_tae'] Artists before: ['dove cameron', 'sofia carson', 'booboo stewart', 'cameron boyce'] Artists after: ['dove cameron', 'sofia carson', 'booboo stewart_cameron boyce'] Artists before: ['descemer bueno', 'zion', 'lennox', 'enrique iglesias'] Artists after: ['descemer bueno', 'enrique iglesias', 'lennox_zion'] Artists before: ['booboo stewart', 'cameron boyce', 'mitchell hope', 'sofia carson'] Artists after: ['mitchell hope', 'sofia carson', 'booboo stewart_cameron boyce'] Artists before: ['chandler kinney', 'pearce joza', 'baby ariel', 'dove cameron', 'sofia carson', 'booboo stewart', 'cameron boyce', 'china anne mcclain', 'thomas doherty,', 'dylan playfair'] Artists after: ['chandler kinney', 'pearce joza', 'baby ariel', 'dove cameron', 'sofia carson', 'china anne mcclain', 'thomas doherty,', 'dylan playfair', 'booboo stewart_cameron boyce'] Artists before: ['maddie', 'tae'] Artists after: ['maddie_tae']
After doing all data processing and cleaning, the final data set is comprised of 25,419 songs and 7,855 unique artists. In the table below, the three data sets used throughout the project can be seen and downloaded.
| Data Set | Songs | Size (mb) |
|---|---|---|
| Billboard List | 29,128 | 1.6 |
| Pre-cleaned | 29,128 | 92.5 |
| Cleaned | 25,419 | 44.2 |
song_data = pd.read_pickle('songData.df')
artist_count = defaultdict(lambda: 0)
artist_colab_count = defaultdict(lambda: defaultdict(lambda: 0))
for artists in song_data.artists:
for artist in artists:
artist_count[artist] += 1
for colab in artists:
if colab != artist:
artist_colab_count[artist][colab] += 1
sorted_artists = {k: v for k, v in sorted(artist_count.items(), key=lambda item: item[1], reverse=True) if v > 50}
#for k, v in sorted_artists.items():
# print(k + ':', v)
fig = plt.figure(figsize=(10,5), dpi=100)
plt.bar(*zip(*sorted_artists.items()), color='#3498DB', alpha=0.7)
plt.xlim(-1, len(sorted_artists.items()))
plt.xlabel('Artist')
plt.xticks(rotation=90)
plt.ylabel('Count')
plt.title('Songs pr. Artist')
plt.savefig("../static/images/songs_per_artist.png", bbox_inches='tight')
plt.show()
# plotly_fig = tls.mpl_to_plotly(fig, resize=False)
# plotly_fig.update_layout(
# xaxis = dict(
# tickmode = 'array',
# tickvals = list(np.arange(len(sorted_artists.keys()))),
# ticktext = list(sorted_artists.keys())),
# paper_bgcolor='rgba(0,0,0,0)',
# plot_bgcolor='rgba(0,0,0,0)',
# title_x =0.5,
# margin=dict(l=5, r=5, t=20, b=5)
# )
# plotly.write_image(plotly_fig, plotly_folder + "songs_per_artist.json")
#iplot(plotly_fig)
From this figure we can see that Drake has by far the most amount of songs on the Billboard 'Hot-100' list. There's some good diversity in the type of artists with most songs on the list, but they all mainly fall into the rap, r&B or pop genres.
Creating a list of all unique genres and plotting the amount of songs in each genre
all_genres = set()
genre_count = {}
for genres in song_data.genres:
for genre in genres:
if genre in all_genres:
genre_count[genre] += 1
else:
genre_count[genre] = 1
all_genres = all_genres.union(set(genres))
print("Total genres:", len(all_genres))
Total genres: 612
sorted_genres = {k: v for k, v in sorted(genre_count.items(), key=lambda item: item[1], reverse=True) if v > 500}
#for k, v in sorted_genres.items():
# print(k + ':', v)
fig = plt.figure(figsize=(10,5), dpi=100)
plt.bar(*zip(*sorted_genres.items()), color='#3498DB', alpha=0.7)
plt.xlim(-1, len(sorted_genres.items()))
plt.xlabel('Genre')
plt.xticks(rotation=90)
plt.ylabel('Count')
plt.title('Songs pr. Genre')
plt.savefig("../static/images/songs_per_genre.png", bbox_inches='tight')
plt.show()
# plotly_fig = tls.mpl_to_plotly(fig, resize=False)
# plotly_fig.update_layout(
# xaxis = dict(
# tickmode = 'array',
# tickvals = list(np.arange(len(sorted_genres.keys()))),
# ticktext = list(sorted_genres.keys())),
# paper_bgcolor='rgba(0,0,0,0)',
# plot_bgcolor='rgba(0,0,0,0)',
# title_x =0.5,
# margin=dict(l=5, r=5, t=20, b=5)
# )
# plotly.write_image(plotly_fig, plotly_folder + "songs_per_genre.json")
#iplot(plotly_fig)
It's clear to see that a majority of songs fall into the pop genre, with rock, r&b and rap taking 2nd to 4th place. This is not all that suprising as all these genres have been hugely popular since 1960. Rap however only saw it's inception in the 1990s, but has become a staple in the music industry since then.
And doing the same for decades:
decade_count = defaultdict(lambda: 0)
for date in song_data.released:
year = (int(date[:4]) // 10) * 10
decade_count[str(year)] += 1
decade_count = {k: v for k, v in sorted(decade_count.items(), key=lambda item: int(item[0])) if v > 1}
fig = plt.figure(figsize=(10,5), dpi=100)
plt.bar(*zip(*decade_count.items()), color='#3498DB', alpha=0.7)
plt.xlabel('Decade')
plt.ylabel('Count')
plt.title('Songs pr. Decade')
plt.savefig("../static/images/songs_per_decade.png", bbox_inches='tight')
plt.show()
# plotly_fig = tls.mpl_to_plotly(fig, resize=False)
# plotly_fig.update_layout(
# xaxis = dict(
# tickmode = 'array',
# tickvals = list(np.arange(len(decade_count.keys()))),
# ticktext = list(decade_count.keys())),
# paper_bgcolor='rgba(0,0,0,0)',
# plot_bgcolor='rgba(0,0,0,0)',
# title_x =0.5,
# margin=dict(l=5, r=5, t=20, b=5)
# )
# plotly.write_image(plotly_fig, plotly_folder + "songs_per_decade.json")
#iplot(plotly_fig)
A quick look at the distribution of songs through the decades shows us that a lot of old songs make it to the list, with 1960 having more songs than any other decade on the 'Hot-100' list. 2010 saw a steep increase in the amount of songs on the list compared to previous years. Perhaps there was a shift in what kind of music we were listening to.
The data has now been gathered and thoroughly cleaned, but before we are ready to apply our network science and text analysing techniques to it, we will first look at the ten characteristics of Big Data:
Big¶
As mentioned previously, the data set comprises 25,419 songs and 7,855 unique artists, but in addition, the lyric corpus has a total size of 8,476,446 with 74,915 unique tokens. With this type of information, a data set of this size would be tough to come by other than scraping the internet.
Always-on¶
Billboard updates their 'The Hot 100' chart each week, which means the list has been updated since we first collected the data. Because it updates each week, the data set can be updated 52 times a year, which makes the data longitudinal, but since it updates only 52 times a year and not constantly like, e.g. Twitter, it is not entirely always-on.
Non-reactive¶
Reactivity describes whether subjects know researchers are observing them because that might change the subjects' behaviour. All musical artists are most likely aware that they are present on the chart and might follow their ranking closely, but the question is how much they change their behaviour and musical style to get a higher ranking on the chart. One could speculate that some artists might change their use of words and language to appeal to a broader audience to perform better on the chart, while others follow their musical heart. Though, with this being said, we do not believe that the fact that researchers might also be looking at the chart with the intent to do network science and text analysis will change the behaviour of the artists.
Incomplete¶
Completeness express if the data set manages to capture the entire unfolding of a specific event or, e.g., the entire network of a specific group. In the case of this project, we are attempting to analyse the network and text of the most popular artists and songs through modern time. With this in mind, we believe that using Billboard's 'The Hot 100' chart gives a good indication of the most popular artists and songs, though arguments could be made for the case that the chart might be skewed towards music popular in the states.
Inaccessable¶
The data used in this project is very much accessible. As was accounted for earlier on this page, everything has been downloaded freely off the internet via different APIs.
Nonrepresentative¶
Representativity denotes whether the data can generalise to, e.g., social phenomena more in general - out-of-sample generalisation. To this end, being a musician is quite a unique occupation when it comes to a social network of collaboration, in comparison to, e.g. a profession like acting. One could presume the typical actor is more connected than the typical musician since many actors are associated with a movie or tv-show, while often not many musicians are working on a song. At least not many musicians are seen shown as the artists on a given song, while many people might have worked on it during the songwriting and musical production. Additionally, since our data set only contains songs in English from a popular music chart in the west, the data might not be suited for generalisation of the network, or text, for musicians from other parts of the planet. With this being said, the data set is probably still perfectly applicable for within-sample comparisons.
Drifting¶
There is some systemic drifting in the data set, as the way songs were picked for the 'Hot-100' list has changed since its inception back in 1958. Originally, songs were picked purely based on how well they sold, but as the music industry evolved and radio, tv and streaming started becoming more prevalent, all these factors are now considered, when songs are picked for the list.
Algorithmically confounded¶
As the songs are only picked from the Billboard 'Hot-100' list, there is some amount of algorithmic confounding going on.
Dirty¶
The data set could be dirty as some songs could still be loaded wrongly, or we might have missed something via the cleaning. Furthermore, the data is not a complete overview of the connections between artists or the language they use, as we only chose songs that appeared on the 'Hot-100' list.
Sensitive¶
The data is not sensitive, as there is no information in it, that isn't already public, as well as the data just being very basic stats, release year, song title, song artists.
This section of the notebook will go through the network analysis of the data. We have used networkx to build the networks and netwulf to visualise them. The the following sections we will be investigating the full network of all musicians as well as a subset of them based on selected genres. The networks will be studied by calculating different statistics, such as number of nodes, number of links, density, clusterings and more. In addition, we will look at community detection to see how well the different genres manages to partition the networks into communities in comparison to the Louvain algorithm for community detection.
song_data = pd.read_pickle('songData.df')
print(f'Number of songs: {len(song_data)}')
Number of songs: 25706
Network visualisation config.
with open('network_figures/config.txt') as f:
data = f.read()
config = json.loads(data)
Calculate all genres associated to each artist as well as how many songs they have made for each genre.
all_artists = set()
artist_genres = dict()
artist_genres_count = defaultdict(lambda: defaultdict(lambda: 0))
for artists, genres in zip(song_data.artists, song_data.genres):
for artist in artists:
all_artists = all_artists.union(set([artist]))
for genre in genres:
artist_genres_count[artist][genre] += 1
if artist in artist_genres.keys():
artist_genres[artist] = artist_genres[artist].union(set(genres))
else:
artist_genres[artist] = set(genres)
all_artists = list(all_artists)
print(f'Number of unique artists: {len(all_artists)}')
Number of unique artists: 8079
Creating a list of 20 genres from which each artist can get their main genre label. In addition, a colour list to colour each node based on their main genre.
genre_list = ['pop', 'rock', 'rap', 'r&b', 'country', 'soul', 'ballad', 'hip-hop',
'trap', 'singer-songwriter', 'funk', 'eighties', 'seventies', 'soundtrack',
'dance', 'electronic', 'folk', 'cover', 'jazz', 'blues']
colour_list = ['#E74C3C', '#8E44AD', '#3498DB', '#2ECC71', '#F39C12', '#F1C40F', '#F5B7B1', '#5D6D7E',
'#AED6F1','#F5B7B1', '#FCF3CF', '#DCB9ED', '#8F2323', '#8F6A23', '#4F8F23', '#23628F',
'#6B238F', '#AED6F1','#A3E4D7', '#D4AC0D', '#D7BDE2']
genre_to_colour_dict = {}
for colour, genre in zip(colour_list, genre_list):
genre_to_colour_dict[genre] = colour
Calculate number of songs each artist has in the data set as well as how many times they have collaborated with other artists.
artist_count = defaultdict(lambda: 0)
artist_colab_count = defaultdict(lambda: defaultdict(lambda: 0))
for artists in song_data.artists:
for artist in artists:
artist_count[artist] += 1
for colab in artists:
if colab != artist:
artist_colab_count[artist][colab] += 1
Add each artist as a node with three attributes
genre: most common genre for that artist within the fixed list 'genre_list'
size: number of times the artist has appeared on Billboard's the hot 100 (used to give each node the correct size)
all_genres: all genres associated with that artist
group: the colour of the genre associated with the artist
If an artist has multiple most common genres, meaning that they, e.g. have made 5 pop songs and 5 rock songs, the genre attribute for that artist will be picked at random amongst the most common genres. An exception for to is with rap and trap, because trap is a subgenre of rap (but still a major and defined genre), we deem it more appropriate to label artists as trap, if they have an equal number of rap and trap songs.
G = nx.Graph()
for artist in all_artists:
most_occurences = 0
rap_count = 0
trap_count = 0
max_key = 'other'
random.shuffle(genre_list)
for genre in genre_list:
if genre in artist_genres_count[artist]:
if genre == 'rap':
rap_count = artist_genres_count[artist][genre]
if genre == 'trap':
trap_count = artist_genres_count[artist][genre]
if artist_genres_count[artist][genre] > most_occurences:
most_occurences = artist_genres_count[artist][genre]
max_key = genre
if (rap_count > 0) and (rap_count == trap_count) and (max_key in ['rap', 'trap']):
max_key = 'trap'
G.add_node(artist,
genre=max_key,
size=artist_count[artist],
all_genres=artist_genres[artist],
group=genre_to_colour_dict[max_key])
G.number_of_nodes()
print(f'Number of nodes: {G.number_of_nodes()}')
Number of nodes: 8079
Add edges between two artists if they have collaborated on a song and weigh the edge by the number of times they have collaborated.
linked_artists = set()
for artists in song_data.artists:
if len(artists) > 1:
for comb in combinations(artists, 2):
if not comb[0] == comb[1]:
linked_artists = linked_artists.union({tuple([comb[0], comb[1], artist_colab_count[comb[0]][comb[1]]])})
linked_artists = list(linked_artists)
G.add_weighted_edges_from(linked_artists)
print(f'Number of edges: {G.number_of_edges()}')
Number of edges: 7273
def randomized_graph(graph, N):
g = graph.copy()
swaps = 0
while swaps < N:
uv = random.choice(list(g.edges()))
if uv[0] == uv[1]:
uv = random.choice(list(g.edges()))
xy = random.choice(list(g.edges()))
while uv[1] == xy[0]:
xy = random.choice(list(g.edges()))
if not g.has_edge(uv[0], xy[1]) and not g.has_edge(uv[1], xy[0]):
g.remove_edges_from([uv, xy])
g.add_edges_from([(uv[0], xy[1]), (uv[1], xy[0])])
swaps += 1
return g
def naive_randomized_graph(graph):
g = nx.MultiGraph(graph)
edges = list(g.edges())
sources = [a for a, b in edges]
targets = [b for a, b in edges]
unique_list = sources + targets
random.shuffle(unique_list)
new_edges = [(unique_list[i], unique_list[i+1]) for i in range(0, len(unique_list)-1, 2)]
g.remove_edges_from(edges)
g.add_edges_from(new_edges)
return g
def get_network_by_genre(G, genre):
genre_nodes = [node for node, data in G.nodes(data=True) if genre in data['all_genres']]
return G.subgraph(genre_nodes)
def get_partitioning(filtered_graph):
partitioning = []
nc = set(nx.get_node_attributes(filtered_graph, 'group').values())
for i in nc:
nodes = (
node
for node, data
in filtered_graph.nodes(data=True)
if data.get("group") == i
)
partitioning.append(filtered_graph.subgraph(nodes))
return partitioning
def modularity(graph, partitioning):
M = 0
L = graph.number_of_edges()
for subgraph in partitioning:
Lc = subgraph.number_of_edges()
kc = sum(graph.degree[node] for node in subgraph.nodes())
M += Lc/L - (kc / (2 * L))**2
return M
It was previously decided that each artists could get their main label based on genre_list. Though, analysing and visualising 20 different networks can get a bit cumbersome, so we will be picking out a subset of these. To do this, we will first find out how many artists have each genre as their main genre, and also how many times each genre has occurred in total.
main_genre_sizes = defaultdict(lambda: 0)
for art, data in G.nodes(data=True):
main_genre_sizes[data['genre']] += 1
all_genre_sizes = defaultdict(lambda: 0)
for art, data in G.nodes(data=True):
for g in data['all_genres']:
all_genre_sizes[g] += 1
{k: v for k, v in sorted(main_genre_sizes.items(), key=lambda item: item[1], reverse=True)}
{'pop': 3549,
'rap': 1832,
'rock': 950,
'r&b': 634,
'country': 381,
'trap': 170,
'soul': 95,
'hip-hop': 85,
'electronic': 72,
'soundtrack': 61,
'dance': 40,
'singer-songwriter': 34,
'eighties': 34,
'ballad': 33,
'cover': 27,
'funk': 26,
'folk': 25,
'seventies': 15,
'jazz': 11,
'blues': 5}
_ = [print(x) for x in list({k: v for k, v in sorted(all_genre_sizes.items(), key=lambda item: item[1], reverse=True)}.items())[:25]]
('pop', 4922)
('rap', 2601)
('rock', 1826)
('r&b', 1641)
('soul', 725)
('ballad', 698)
('pop-rock', 676)
('country', 624)
('soundtrack', 605)
('hip-hop', 593)
('singer-songwriter', 565)
('adult contemporary', 459)
('soul pop', 454)
('eighties', 445)
('trap', 440)
('dance', 430)
('electronic', 424)
('uk', 406)
('funk', 394)
('cover', 389)
('seventies', 381)
('alternative rock', 370)
('dance-pop', 365)
('east coast', 364)
('synth-pop', 328)
The genres we've have decided to pick out is based on the number of times these genres occur as well as genres we deem interesting. Based on the results seen above, the following 11 genres' networks will be analysed:
pop, rap, rock, R&B, country, soul, ballad, hip-hop, trap, singer-songwriter and funk.
The full network has now been created and we are ready to do visualisations and analysis. In the following sections we will be working with the full network and sub-networks described above. For each of the networks we will be investigating the full network as well as versions of the networks where singleton nodes with less than 5 songs are removed.
The reasoning for only removing singleton nodes with less than 5 songs, is that we want to make the networks as clear as possible, while still maintaining the singleton artists that are influential for the genre at hand.
network_G, _ = nw.visualize(G, config=config, plot_in_cell_below=False)
fig, ax = nw.draw_netwulf(network_G)
# plt.savefig("network_figures/G.pdf")
print(f'Number of Nodes: {G.number_of_nodes()}')
print(f'Number of Links: {G.number_of_edges()}')
print(f'Density: {nx.density(G):.5f}')
print(f'Avg. clustering: {nx.average_clustering(G):.2f}')
degrees = list(dict(G.degree()).values())
print(f'Average degrees: {np.mean(degrees):.2f}')
print(f'Median degrees: {np.median(degrees)}')
print(f'Mode of degrees: {stats.mode(degrees)[0][0]}')
print(f'Minimum degree: {min(degrees)}')
print(f'Maximum degree: {max(degrees)}')
Number of Nodes: 8079 Number of Links: 7273 Density: 0.00022 Avg. clustering: 0.16 Average degrees: 1.80 Median degrees: 0.0 Mode of degrees: 0 Minimum degree: 0 Maximum degree: 108
From these basic statistics we see that the number of nodes in the networks is 7854 and the number of links is 6799.
The density of an undirected graph is given by:
\begin{align} d=\frac{2m}{n(n-1)}, \end{align}where $m$ is the number of edges and $n$ is the number of nodes. The interpretation of the measure is, that the density is 0 for a graph without edges and 1 for a completely connected graph, and is therefore a measure of how dense a graph is wrt. edge connectivity. In this case, the network has a density of 0.00022. This can be a little hard to interpret, which is why we've also calculated the average clustering coefficient, that is given by:
\begin{align} \overline{C}=\frac{1}{N} \sum_{i=1}^N \frac{2L_i}{k_i(k_i-1)}, \end{align}where $L_i$ is the number of links between the $k_i$ neighbours of node $i$. The interpretation of this measure is the probability that two neighbours of a randomly selected node link, to each other. For this network, we have an average clustering coefficient of 0.16.
Lastly, we see that the average degree of the nodes in the graph is 1.73, which means that a node on average is connected to 1.73 other nodes. We also see that both the minimum, median and mode of degrees is 0, whereas the maximum degree is 108.
We will now analyse the degrees of the network a bit more thoroughly by looking at the distribution of degrees on a log-log scale. The reasoning for this is that a common feature for real world networks are hubs - meaning that a few nodes in a network are highly connected to other nodes. Scale-free networks are networks with this presence of large hubs and such networks are characterised by a power-law degree distribution.
bins = np.logspace(0, np.log10(max(degrees)), 13)
density = True
hist, edges = np.histogram(degrees, bins=bins, density = density)
x = (edges[1:] + edges[:-1])/2
width = bins[1] - bins[0]
fig, ax = plt.subplots(dpi=135)
ax.plot(x, hist, marker='.', alpha=0.7, linewidth=2.5, markersize=12, color='#3498DB', label='Degree')
ax.vlines(np.mean(degrees), 0, 1, ls='--', colors='#E74C3C', alpha=0.7, label=f'Mean degree: {np.mean(degrees):.1f}')
ax.set_xlabel('degrees')
if density:
ax.set_ylabel('probability density')
else:
ax.set_ylabel('counts')
ax.legend()
ax.set_title('Distribution of degrees')
ax.set_yscale("log")
ax.set_xscale("log")
plt.savefig("../static/images/distribution_of_degrees.png", bbox_inches='tight')
Looking at the figure above, we see exactly that the degree distribution of the network follow a power-law, which thus gives good indication that we are dealing with a real world network in comparison to a random network.
In this section we will explore the communities of the network. To do this, we are looking at looking at the partition obtained when grouping the artists by their genre. This will be compared to the partition obtained using the Louvain algorithm. To get an indication of whether the two partitions are good at divising the network into modules, both of these partitions will then be juxtapositioned with random networks, based on the real network. When doing this comparison, we can see if the modularity of the two partitions are significantly different than 0.
First off, we will be getting the partitions based on the genres
genre_partitioning = get_partitioning(G)
genre_partitioning_dict = dict()
for partition in genre_partitioning:
for artist, data in partition.nodes(data=True):
genre_partitioning_dict[artist] = data['group']
print(f'Genre partitioning modularity using homemade modularity function: {modularity(G, genre_partitioning):.4f}')
print(f'Genre partitioning modularity using python-louvain modularity function: {community.modularity(genre_partitioning_dict, G):.4f}')
Genre partitioning modularity using homemade modularity function: 0.3239 Genre partitioning modularity using python-louvain modularity function: 0.3383
We will now be calculating the modularity of the network based on the partitioning obtained using the Louvain algorithm.
louvain_modularity = community.modularity(community.best_partition(G), G)
print(f'Modularity for the full network: {louvain_modularity:.4f}')
Modularity for the full network: 0.7605
We initially see that the modularity obtained by using the Louvain algorithm is more than twice as large as when using the genres.
Next up, we will be generating a 1000 random networks using the double edge swap algorithm. This makes it so each node in the new random network has the same degree as it had in the original networks, but the connections are different. For each of these random networks, we will be partitioning them using the genres and calculate their modularities. We do 1.2*number of edges swaps to make sure we get a fully random version of the network.
modularity_list = []
N = 1000
# graph = G.copy()
for i in tqdm(range(N)):
graph = G.copy()
RG = nx.double_edge_swap(graph, nswap=graph.number_of_edges()*1.2, max_tries=10000, seed=None)
new_RG = nw.get_filtered_network(RG, node_group_key='group')
RG_partitioning = get_partitioning(new_RG)
modularity_list.append(modularity(RG, RG_partitioning))
100%|██████████████████████████████████████████████████████████████████████████████| 1000/1000 [04:45<00:00, 3.50it/s]
print(f'Average modularity of random networks: {np.mean(modularity_list):.4f}')
print(f'Standard deviation of modularity of random networks: {np.std(modularity_list):.4f}')
Average modularity of random networks: 0.0265 Standard deviation of modularity of random networks: 0.0047
We see that the mean and standard deviation of the modularity is 0, which is to be expected, as the networks are random, and we therefore shouldn't have any good partition using the genres.
To get an overview of the genre partition and the Louvain algorithm partition, we will now plot the distribution of the configuration model's modularity along side the genre partition's modularity and the Louvain algorithm partition's modularity.
plt.hist(modularity_list, bins=10, alpha=0.5, label='Random', density=True)
plt.axvline(modularity(G, genre_partitioning), color = '#E74C3C', linestyle='--', label='Genre')
plt.axvline(louvain_modularity, color = '#9B59B6', linestyle='--', label='Louvain')
plt.legend()
plt.title(f'Modularity of {N} random graphs')
plt.xlabel('Modularity')
plt.ylabel('Count')
plt.show()
Looking at the figure above, we see that both of the partitioning methods leads to a modularity significantly different from 0, and thereby also larger than any of those from the random networks. Through the modularity measure, we can thus deem that the network is not random. Though, as touched upon previously, the modularity of the networks partitioned using the Louvain algorithm is more than twice the size of genre partition. To get an understanding of how this partition looks, we will be visualising the graph with the Louvain partitioning.
G_louvain_partition = community.best_partition(G)
G_louvain = G.copy()
for artist, data in G_louvain.nodes(data=True):
data['group'] = G_louvain_partition[artist]
network_G_louvain, _ = nw.visualize(G_louvain, config=config, plot_in_cell_below=False)
fig, ax = nw.draw_netwulf(network_G_louvain)
Noticeable here is that the Louvain algorithm actually also groups many of the rap, pop, rock and country artists together into four separate groups, though in general also a lot more groups are seen. Let's see just how many groups:
print(f'Number of groups using genres: {len(set(data["group"] for art, data in G.nodes(data=True)))}')
print(f'Number of groups using Louvain: {max(G_louvain_partition.values())+1}')
Number of groups using genres: 18 Number of groups using Louvain: 5095
We here see that the Louvain algorithm partitions the network into an immense 4994 groups, which is enormous compared to the 7854 nodes in the graph. An explanation for this is that the large number of singleton nodes are probably given their own group, which gives a good partitioning, but doesn't make much sense compared to a partitioning using genres.
As mentioned previously, we have decided to weigh the nodes in the network with the number of songs that artist has in the data set. The advantage of this, is that the most popular artists will be the ones that are easiest to see, this is especially the case for older artists that haven't collaborated as much - such as Elvis Presley or The Beatles. Artists like these would be virtually invisible if we would have weighted the nodes by the strength of their connections. Though, weighing nodes by the strength of their connections tell a great deal about which nodes are the biggest collaborators, and thereby some of the most central nodes in the graph.
We will therefore in this section deal with betweenness centrality that, for each node in a graph, is a measure of how central that node is. The measure is based on shortest paths in such a way that the betweenness centrality for each node is the number of shortest paths that pass through the node. The formula for betweenness centrality is given by:
\begin{align} BC(n)=\sum_{s\neq v \neq t} \frac{\sigma_{s,t}(n)}{\sigma_{s,t}}, \end{align}where $\sigma_{s,t}$ is the total number of shortest paths from node $s$ to node $t$ and $\sigma_{s,t}(n)$ is the number of those paths that pass through $n$.
Combining this with weighing the artists by the number of songs they have in the data set will give us a great overview of not just the most popular artists, but also the most central, collaboratory and connective artists.
bc = nx.betweenness_centrality(G)
sorted_bc = {k: v for k, v in sorted(bc.items(), key=lambda item: item[1], reverse=True)}
{k:v for k, v in list(sorted_bc.items())[:20]}
{'lil wayne': 0.005023970550920835,
'kanye west': 0.0044320038203608655,
'drake': 0.004197969508689595,
'nicki minaj': 0.003618482295013175,
'chris brown': 0.0034090144057793074,
'quincy jones': 0.003217084277679066,
'ludacris': 0.003132771594697592,
'snoop dogg': 0.0031123652971768215,
'mariah carey': 0.002796673182061445,
'usher': 0.0027480671967596783,
'jay-z': 0.0026838272719125643,
'fat joe': 0.00237325566408824,
'james ingram': 0.0022984208053862076,
't.i.': 0.0021649631078659243,
'travis scott': 0.0021616760304206794,
'stevie wonder': 0.0021526897036298898,
'eminem': 0.002012632539394056,
'll cool j': 0.0019688649603681486,
'mary j. blige': 0.0019122848685990447,
'janet jackson': 0.0018828904840405677}
Having calculated the betweenness centrality for each node, we see that many rappers are present in the top-20. This is not too surprising given the the number of rap artists, their tendency to collaborate and the graph we were looking at earlier. Though we also see names like Quincy Jones, James Ingram and Stevie Wonder - it is interesting to see those artists playing a central part in the network.
The next part of the analysis for the full network is the version where we will be removing singleton nodes with less than 5 songs. The following section will go through the same steps as for the complete network, so not everything will be described with the same level of detail.
G_no_singles = G.copy()
for artist, data in G.nodes(data=True):
if G_no_singles.degree(artist) == 0 and data['size'] < 5:
G_no_singles.remove_node(artist)
network_G_no_singles, _ = nw.visualize(G_no_singles, config=config, plot_in_cell_below=False)
fig, ax = nw.draw_netwulf(network_G_no_singles)
# plt.savefig("network_figures/G_no_singles.pdf")
Calculate basic statistics for the network
graph = G_no_singles
print(f'Number of Nodes: {graph.number_of_nodes()}')
print(f'Number of Links: {graph.number_of_edges()}')
print(f'Density: {nx.density(graph):.5f}')
print(f'Avg. clustering: {nx.average_clustering(graph):.2f}')
degrees = list(dict(graph.degree()).values())
print(f'Average degrees: {np.mean(degrees):.2f}')
print(f'Median degrees: {np.median(degrees)}')
print(f'Mode of degrees: {stats.mode(degrees)[0][0]}')
print(f'Minimum degree: {min(degrees)}')
print(f'Maximum degree: {max(degrees)}')
Number of Nodes: 4306 Number of Links: 7273 Density: 0.00078 Avg. clustering: 0.30 Average degrees: 3.38 Median degrees: 1.0 Mode of degrees: 1 Minimum degree: 0 Maximum degree: 108
Compared to the full network, we have now gone down from 7854 to 4154 nodes while keeping the same number of edges. As expected, all the other network properties have gone up, meaning that with a larger density, avg. clustering and average degrees, we should now see a network that is more densely connected.
bins = np.logspace(0, np.log10(max(degrees)), 13)
density = True
hist, edges = np.histogram(degrees, bins=bins, density = density)
x = (edges[1:] + edges[:-1])/2
width = bins[1] - bins[0]
fig, ax = plt.subplots(dpi=135)
ax.plot(x, hist, marker='.', alpha=0.7, linewidth=2.5, markersize=12, color='#3498DB', label='Degree')
ax.vlines(np.mean(degrees), 0, 1, ls='--', colors='#E74C3C', alpha=0.7, label=f'Mean degree: {np.mean(degrees):.1f}')
ax.set_xlabel('degrees')
if density:
ax.set_ylabel('probability density')
else:
ax.set_ylabel('counts')
ax.legend()
ax.set_title('Distribution of degrees')
ax.set_yscale("log")
ax.set_xscale("log")
Looking at the figure above, we again see that the degree distribution follow a power-law.
We will again communities of the network using both the genres and the Louvain algorithm, both of which will be compared to random networks.
First off, we will be getting the partitions based on the genres.
genre_partitioning = get_partitioning(G_no_singles)
genre_partitioning_dict = dict()
for partition in genre_partitioning:
for artist, data in partition.nodes(data=True):
genre_partitioning_dict[artist] = data['group']
print(f'Genre partitioning modularity using homemade modularity function: {modularity(G_no_singles, genre_partitioning):.4f}')
print(f'Genre partitioning modularity using python-louvain modularity function: {community.modularity(genre_partitioning_dict, G_no_singles):.4f}')
Genre partitioning modularity using homemade modularity function: 0.3239 Genre partitioning modularity using python-louvain modularity function: 0.3383
We here see a modularity that is exactly the same as before. The formula for the modularity is given by (cf. eq, 9.12 of the NS book):
\begin{align} M= \sum_{c=1}^{n_c}\left\lfloor \frac{L_c}{L}-\left(\frac{k_c}{2L} \right)^2 \right\rfloor \end{align}Where $n_c$ is the number of communities, $L_c$ is the number of links in community $c$, $L$ is the total number of links in the network and $k_c$ is the total degree of community $c$. This therefore means, that the modularity doesn't depend at all on the number of nodes, and since these are the only things removed from the full network, the modularity doesn't change.
We will now be calculating the modularity of the network based on the partitioning obtained using the Louvain algorithm.
louvain_modularity = community.modularity(community.best_partition(G_no_singles), G_no_singles)
print(f'Modularity for the full network: {louvain_modularity:.4f}')
Modularity for the full network: 0.7556
We initially see that the modularity obtained by using the Louvain algorithm is almost the same as for the full network (0.7440). This is due to the Louvain algorithm not being fully optimal and non-deterministic. So as for the full graph, the modularity of the Louvain partition is more than twice the size of the genre partition.
Next up, we will be generating a 1000 random networks using the double edge swap algorithm. For each of these random networks, we will be partitioning them using the genres and calculate their modularities.
modularity_list = []
N = 1000
for i in tqdm(range(N)):
graph = G_no_singles.copy()
RG = nx.double_edge_swap(graph, nswap=graph.number_of_edges()*1.2, max_tries=10000, seed=None)
new_RG = nw.get_filtered_network(RG, node_group_key='group')
RG_partitioning = get_partitioning(new_RG)
modularity_list.append(modularity(RG, RG_partitioning))
100%|██████████████████████████████████████████████████████████████████████████████| 1000/1000 [03:35<00:00, 4.64it/s]
print(f'Average modularity of random networks: {np.mean(modularity_list):.4f}')
print(f'Standard deviation of modularity of random networks: {np.std(modularity_list):.4f}')
Average modularity of random networks: 0.0263 Standard deviation of modularity of random networks: 0.0049
We see that the mean and standard deviation of the modularity is 0, which is to be expected, as the networks are random, and we therefore shouldn't have any good partition using the genres.
To get an overview of the genre partition and the Louvain algorithm partition, we will now plot the distribution of the configuration model's modularity along side the genre partition's modularity and the Louvain algorithm partition's modularity.
plt.hist(modularity_list, bins=10, alpha=0.5, label='Random', density=True)
plt.axvline(modularity(G_no_singles, genre_partitioning), color = '#E74C3C', linestyle='--', label='Genre')
plt.axvline(louvain_modularity, color = '#9B59B6', linestyle='--', label='Louvain')
plt.legend()
plt.title(f'Modularity of {N} random graphs')
plt.xlabel('Modularity')
plt.ylabel('Count')
plt.show()
Looking at the figure above, we see that both of the partitioning methods leads to a modularity significantly different from 0, and thereby also larger than any of those from the random networks. Though, as touched upon previously, the modularity of the networks partitioned using the Louvain algorithm is more than twice the size of genre partition. To get an understanding of how this partition looks, we will be visualising the graph with the Louvain partitioning.
G_no_singles_louvain_partition = community.best_partition(G_no_singles)
G_no_singles_louvain = G_no_singles.copy()
for artist, data in G_no_singles_louvain.nodes(data=True):
data['group'] = G_no_singles_louvain_partition[artist]
network_G_no_singles_louvain, _ = nw.visualize(G_no_singles_louvain, config=config, plot_in_cell_below=False)
fig, ax = nw.draw_netwulf(network_G_no_singles_louvain)
As with the previous Louvain graph, the algorithm manages to group the main clumps of nodes together quite well. Though noticible is, that the rappers are divided into two groups (light green and black).
Let's see how many groups we have in this partitioning:
print(f'Number of groups using genres: {len(set(data["group"] for art, data in G_no_singles.nodes(data=True)))}')
print(f'Number of groups using Louvain: {max(G_no_singles_louvain_partition.values())+1}')
Number of groups using genres: 18 Number of groups using Louvain: 1324
We here see that the Louvain algorithm partitions the network into an 1293 groups, which is a lot less compared to the 4992 of the last Louvain network. This means that the number of communities is reduced by 4994 - 1293 = 3701 and having lost 7854 - 4154 = 3700 nodes when removing singletons, it is confirmed, that the Louvain algorithm gives all singleton nodes their own community.
Having now examined the full network for all genres for the musical artists, we will be moving on to analysing some of the most popular genres that we think are interesting.
Were here looking at the network of artists who has at least one song with the tag pop in the data set. The size of the nodes will be determined by the number of songs they have with the tag pop.
genre = 'pop'
G_pop = get_network_by_genre(G, genre)
for artist, data in G_pop.nodes(data=True):
data['size'] = artist_genres_count[artist][genre]
network_G_pop, _ = nw.visualize(G_pop, config=config, plot_in_cell_below=False)
fig, ax = nw.draw_netwulf(network_G_pop)
# plt.savefig("network_figures/G.pdf")
Calculate basic statistics for the network
graph = G_pop
print(f'Number of Nodes: {graph.number_of_nodes()}')
print(f'Number of Links: {graph.number_of_edges()}')
print(f'Density: {nx.density(graph):.5f}')
print(f'Avg. clustering: {nx.average_clustering(graph):.2f}')
degrees = list(dict(graph.degree()).values())
print(f'Average degrees: {np.mean(degrees):.2f}')
print(f'Median degrees: {np.median(degrees)}')
print(f'Mode of degrees: {stats.mode(degrees)[0][0]}')
print(f'Minimum degree: {min(degrees)}')
print(f'Maximum degree: {max(degrees)}')
Number of Nodes: 4922 Number of Links: 4250 Density: 0.00035 Avg. clustering: 0.11 Average degrees: 1.73 Median degrees: 0.0 Mode of degrees: 0 Minimum degree: 0 Maximum degree: 74
In comparison to the full network, the pop network has approximately 3000 fewer nodes, 2900 fewer links, but the density, average clustering and average degree hasn't changes all that much.
In this section we will explore the communities of the pop network. We will go through the same steps as previously. First off, we will be getting the partitions based on the genres
genre_partitioning = get_partitioning(G_pop)
genre_partitioning_dict = dict()
for partition in genre_partitioning:
for artist, data in partition.nodes(data=True):
genre_partitioning_dict[artist] = data['group']
print(f'Genre partitioning modularity using homemade modularity function: {modularity(G_pop, genre_partitioning):.4f}')
print(f'Genre partitioning modularity using python-louvain modularity function: {community.modularity(genre_partitioning_dict, G_pop):.4f}')
Genre partitioning modularity using homemade modularity function: 0.2259 Genre partitioning modularity using python-louvain modularity function: 0.2794
We here see a modularity which is lower than what it was for the full network.
We will now be calculating the modularity of the network based on the partitioning obtained using the Louvain algorithm.
louvain_modularity = community.modularity(community.best_partition(G_pop), G_pop)
print(f'Modularity for the full network: {louvain_modularity:.4f}')
Modularity for the full network: 0.7200
Louvain partition modularity is seen to be quite a lot large than the genre modularity.
Next up, we will be generating a 1000 random networks using the double edge swap algorithm. For each of these random networks, we will be partitioning them using the genres and calculate their modularities.
modularity_list = []
N = 1000
for i in tqdm(range(N)):
graph = G_pop.copy()
RG = nx.double_edge_swap(graph, nswap=graph.number_of_edges()*1.2, max_tries=10000, seed=None)
new_RG = nw.get_filtered_network(RG, node_group_key='group')
RG_partitioning = get_partitioning(new_RG)
modularity_list.append(modularity(RG, RG_partitioning))
100%|██████████████████████████████████████████████████████████████████████████████| 1000/1000 [03:07<00:00, 5.33it/s]
print(f'Average modularity of random networks: {np.mean(modularity_list):.4f}')
print(f'Standard deviation of modularity of random networks: {np.std(modularity_list):.4f}')
Average modularity of random networks: 0.0158 Standard deviation of modularity of random networks: 0.0062
We see that the mean and standard deviation of the modularity is 0, which is to be expected, as the networks are random, and we therefore shouldn't have any good partition using the genres.
To get an overview of the genre partition and the Louvain algorithm partition, we will now plot the distribution of the configuration model's modularity along side the genre partition's modularity and the Louvain algorithm partition's modularity.
plt.hist(modularity_list, bins=10, alpha=0.5, label='Random', density=True)
plt.axvline(modularity(G_pop, genre_partitioning), color = '#E74C3C', linestyle='--', label='Genre')
plt.axvline(louvain_modularity, color = '#9B59B6', linestyle='--', label='Louvain')
plt.legend()
plt.title(f'Modularity of {N} random graphs')
plt.xlabel('Modularity')
plt.ylabel('Count')
plt.show()
Looking at the figure above, we see that both of the partitioning methods leads to a modularity significantly different from 0, and thereby also larger than any of those from the random networks. Though, as touched upon previously, the modularity of the network partitioned using the Louvain algorithm is much larger than using the genre partition. To get an understanding of how this partition looks, we will be visualising the graph with the Louvain partitioning.
G_pop_louvain_partition = community.best_partition(G_pop)
G_pop_louvain = G_pop.copy()
for artist, data in G_pop_louvain.nodes(data=True):
data['group'] = G_pop_louvain_partition[artist]
network_G_pop_louvain, _ = nw.visualize(G_pop_louvain, config=config, plot_in_cell_below=False)
fig, ax = nw.draw_netwulf(network_G_pop_louvain)
Noticeable here is that the Louvain algorithm manages to divide the pop artists into communities that makes decent sense. E.g. some of the rappers and R&B artists are grouped as red nodes, whereas female artists like Taylor swift are seen in very light green and other artists like Beyoncé and Rihanna in light green. Very interesting.
Let's see communities we have in total:
print(f'Number of groups using genres: {len(set(data["group"] for art, data in G_pop.nodes(data=True)))}')
print(f'Number of groups using Louvain: {max(G_pop_louvain_partition.values())+1}')
Number of groups using genres: 18 Number of groups using Louvain: 3380
We here see that the Louvain algorithm partitions the network into 3328 groups, which is quite a lot compared to the 4802 nodes in the graph. Again, the large number of singleton nodes is likely the explanation.
This then brings us on to the next analysis for the full network; the version where we will be removing singleton nodes with less than 5 songs. The following section will go through the same steps as as previously.
G_pop_no_singles = G_pop.copy()
for artist, data in G_pop.nodes(data=True):
if G_pop_no_singles.degree(artist) == 0 and data['size'] < 5:
G_pop_no_singles.remove_node(artist)
network_G_pop_no_singles, _ = nw.visualize(G_pop_no_singles, config=config, plot_in_cell_below=False)
fig, ax = nw.draw_netwulf(network_G_pop_no_singles)
# plt.savefig("network_figures/G_no_singles.pdf")
Calculate basic statistics for the network
graph = G_pop_no_singles
print(f'Number of Nodes: {graph.number_of_nodes()}')
print(f'Number of Links: {graph.number_of_edges()}')
print(f'Density: {nx.density(graph):.5f}')
print(f'Avg. clustering: {nx.average_clustering(graph):.2f}')
degrees = list(dict(graph.degree()).values())
print(f'Average degrees: {np.mean(degrees):.2f}')
print(f'Median degrees: {np.median(degrees)}')
print(f'Mode of degrees: {stats.mode(degrees)[0][0]}')
print(f'Minimum degree: {min(degrees)}')
print(f'Maximum degree: {max(degrees)}')
Number of Nodes: 2292 Number of Links: 4250 Density: 0.00162 Avg. clustering: 0.23 Average degrees: 3.71 Median degrees: 1.0 Mode of degrees: 1 Minimum degree: 0 Maximum degree: 74
Compared to the full network, we have now gone down from 4802 to 2218 nodes while keeping the same number of edges. As expected, all the other network properties have gone up, meaning that with a larger density, avg. clustering and average degrees, we should now see a network that is more densely connected.
We will again communities of the network using both the genres and the Louvain algorithm, both of which will be compared to random networks.
First off, we will be getting the partitions based on the genres.
genre_partitioning = get_partitioning(G_pop_no_singles)
genre_partitioning_dict = dict()
for partition in genre_partitioning:
for artist, data in partition.nodes(data=True):
genre_partitioning_dict[artist] = data['group']
print(f'Genre partitioning modularity using homemade modularity function: {modularity(G_pop_no_singles, genre_partitioning):.4f}')
print(f'Genre partitioning modularity using python-louvain modularity function: {community.modularity(genre_partitioning_dict, G_pop_no_singles):.4f}')
Genre partitioning modularity using homemade modularity function: 0.2259 Genre partitioning modularity using python-louvain modularity function: 0.2794
We will now be calculating the modularity of the network based on the partitioning obtained using the Louvain algorithm.
louvain_modularity = community.modularity(community.best_partition(G_pop_no_singles), G_pop_no_singles)
print(f'Modularity for the full network: {louvain_modularity:.4f}')
Modularity for the full network: 0.7161
We initially see that the modularity obtained by using the Louvain algorithm is almost the same as for the full network (0.7053). This is due to the Louvain algorithm not being fully optimal and non-deterministic. So as for the full graph, the modularity of the Louvain partition is more than twice the size of the genre partition.
Next up, we will be generating a 1000 random networks using the double edge swap algorithm. For each of these random networks, we will be partitioning them using the genres and calculate their modularities.
modularity_list = []
N = 1000
for i in tqdm(range(N)):
graph = G_pop_no_singles.copy()
RG = nx.double_edge_swap(graph, nswap=graph.number_of_edges()*1.2, max_tries=10000, seed=None)
new_RG = nw.get_filtered_network(RG, node_group_key='group')
RG_partitioning = get_partitioning(new_RG)
modularity_list.append(modularity(RG, RG_partitioning))
100%|██████████████████████████████████████████████████████████████████████████████| 1000/1000 [01:54<00:00, 8.72it/s]
print(f'Average modularity of random networks: {np.mean(modularity_list):.4f}')
print(f'Standard deviation of modularity of random networks: {np.std(modularity_list):.4f}')
Average modularity of random networks: 0.0158 Standard deviation of modularity of random networks: 0.0065
We see that the mean and standard deviation of the modularity is 0, which is to be expected, as the networks are random, and we therefore shouldn't have any good partition using the genres.
To get an overview of the genre partition and the Louvain algorithm partition, we will now plot the distribution of the configuration model's modularity along side the genre partition's modularity and the Louvain algorithm partition's modularity.
plt.hist(modularity_list, bins=10, alpha=0.5, label='Random', density=True)
plt.axvline(modularity(G_pop_no_singles, genre_partitioning), color = '#E74C3C', linestyle='--', label='Genre')
plt.axvline(louvain_modularity, color = '#9B59B6', linestyle='--', label='Louvain')
plt.legend()
plt.title(f'Modularity of {N} random graphs')
plt.xlabel('Modularity')
plt.ylabel('Count')
plt.show()
Looking at the figure above, we see that both of the partitioning methods leads to a modularity significantly different from 0, and thereby also larger than any of those from the random networks. Though, as touched upon previously, the modularity of the networks partitioned using the Louvain algorithm is much larger than for the genre partition. To get an understanding of how this partition looks, we will be visualising the graph with the Louvain partitioning.
G_pop_no_singles_louvain_partition = community.best_partition(G_pop_no_singles)
G_pop_no_singles_louvain = G_pop_no_singles.copy()
for artist, data in G_pop_no_singles_louvain.nodes(data=True):
data['group'] = G_pop_no_singles_louvain_partition[artist]
network_G_pop_no_singles_louvain, _ = nw.visualize(G_pop_no_singles_louvain, config=config, plot_in_cell_below=False)
fig, ax = nw.draw_netwulf(network_G_pop_no_singles_louvain)
As with the previous Louvain graph, the algorithm manages to group the main clumps of nodes together quite well.
Let's see how many groups we have in this partitioning:
print(f'Number of groups using genres: {len(set(data["group"] for art, data in G_pop_no_singles.nodes(data=True)))}')
print(f'Number of groups using Louvain: {max(G_pop_no_singles_louvain_partition.values())+1}')
Number of groups using genres: 18 Number of groups using Louvain: 761
We here see that the Louvain algorithm partitions the network into 740 groups, which is a lot less compared to the 3328 of the last Louvain network. This means that the number of communities is reduced by 3328 - 740 = 2588 and having lost 4802 - 2218 = 2584 nodes when removing singletons, we again see that the Louvain algorithm gives all singleton nodes their own community.
For the remaining genres: rap, rock, R&B, country, soul, ballad, hip-hop, trap, singer-songwriter and funk, we will be gathering statistics and be making visualisations of the networks with and without singletons with the genre community partition and the Louvain community partition, as this information will be used on the website. Though these results will not be shown here in the notebook, as it would simply take up way too much space.
The following function takes in a genre and a graph -> computes and saves statistics and network graph visualisation for both the genre partition and the Louvain partition for the graph with and without singletons.
def save_all_networks(genre, G):
""" -------------------------- With singletons -------------------------- """
# Get network for specified genre
if genre == 'all':
G_genre = G
else:
G_genre = get_network_by_genre(G, genre)
for artist, data in G_genre.nodes(data=True):
data['size'] = artist_genres_count[artist][genre]
# Visualise network
network_G_genre, config_genre = nw.visualize(G_genre, config=config, plot_in_cell_below=False)
network_G_genre_data = nx.node_link_data(G_genre)
size_map = {node['id']: node['size'] for node in network_G_genre_data['nodes']}
for node in network_G_genre['nodes']:
node['size'] = size_map[node['id']]
# Make folder and save network and config
filepath = f'../content/networks/{genre}/withsingles/genre'
if not os.path.exists(filepath):
os.makedirs(filepath)
with open(f'../content/networks/{genre}/withsingles/genre/network.json', 'w') as fp:
json.dump(network_G_genre, fp)
with open(f'../content/networks/{genre}/withsingles/genre/config.json', 'w') as fp:
json.dump(config_genre, fp)
# Get statistics for network and save in folder
stats_genre = dict()
degrees = list(dict(G_genre.degree()).values())
stat_names = ["Number of nodes", "Number of links", "Denisty",
"Average clustering", "Average degree", "Max degree"]
stat_vals = [G_genre.number_of_nodes(), G_genre.number_of_edges(), round(nx.density(G_genre),5),
round(nx.average_clustering(G_genre), 2), round(np.mean(degrees), 2), max(degrees)]
for name, val in zip(stat_names, stat_vals):
stats_genre[name] = val
# Calculate top-10 betweenness centrality
bc = nx.betweenness_centrality(G_genre)
sorted_bc = {k: v for k, v in sorted(bc.items(), key=lambda item: item[1], reverse=True)}
sorted_bc_top10 = {k: round(v, 4) for k, v in list(sorted_bc.items())[:10]}
stats_genre['Betweenness centrality'] = sorted_bc_top10
with open(f'../content/networks/{genre}/withsingles/genre/stats.json', 'w') as fp:
json.dump(stats_genre, fp)
""" -------------------------- With singletons Louvain -------------------------- """
# Get Louvain partitioning
G_louvain_partition = community.best_partition(G_genre)
G_louvain = G_genre.copy()
for artist, data in G_louvain.nodes(data=True):
data['group'] = G_louvain_partition[artist]
# Visualise network
network_G_louvain, config_louvain = nw.visualize(G_louvain, config=config, plot_in_cell_below=False)
network_G_louvain_data = nx.node_link_data(G_louvain)
size_map = {node['id']: node['size'] for node in network_G_louvain_data['nodes']}
for node in network_G_louvain['nodes']:
node['size'] = size_map[node['id']]
# Make folder and save network and config
filepath = f'../content/networks/{genre}/withsingles/louvain'
if not os.path.exists(filepath):
os.makedirs(filepath)
with open(f'../content/networks/{genre}/withsingles/louvain/network.json', 'w') as fp:
json.dump(network_G_louvain, fp)
with open(f'../content/networks/{genre}/withsingles/louvain/config.json', 'w') as fp:
json.dump(config_louvain, fp)
with open(f'../content/networks/{genre}/withsingles/louvain/stats.json', 'w') as fp:
json.dump(stats_genre, fp)
""" -------------------------- Without singletons -------------------------- """
## Make networks without singletons with less than 5 songs
G_genre_no_singles = G_genre.copy()
for artist, data in G_genre.nodes(data=True):
if G_genre_no_singles.degree(artist) == 0 and data['size'] < 5:
G_genre_no_singles.remove_node(artist)
# Visualise network
network_G_genre_no_singles, config_genre_no_singles = nw.visualize(G_genre_no_singles, config=config, plot_in_cell_below=False)
network_G_genre_no_singles_data = nx.node_link_data(G_genre_no_singles)
size_map = {node['id']: node['size'] for node in network_G_genre_no_singles_data['nodes']}
for node in network_G_genre_no_singles['nodes']:
node['size'] = size_map[node['id']]
# Make folder and save network and config
filepath = f'../content/networks/{genre}/withoutsingles/genre'
if not os.path.exists(filepath):
os.makedirs(filepath)
with open(f'../content/networks/{genre}/withoutsingles/genre/network.json', 'w') as fp:
json.dump(network_G_genre_no_singles, fp)
with open(f'../content/networks/{genre}/withoutsingles/genre/config.json', 'w') as fp:
json.dump(config_genre_no_singles, fp)
# Get statistics for network and save in folder
stats_genre_no_singles = dict()
degrees_no_singles = list(dict(G_genre_no_singles.degree()).values())
stat_names = ["Number of nodes", "Number of links", "Denisty",
"Average clustering", "Average degree", "Max degree"]
stat_vals = [G_genre_no_singles.number_of_nodes(), G_genre_no_singles.number_of_edges(), round(nx.density(G_genre_no_singles),5),
round(nx.average_clustering(G_genre_no_singles), 2), round(np.mean(degrees_no_singles), 2), max(degrees_no_singles)]
for name, val in zip(stat_names, stat_vals):
stats_genre_no_singles[name] = val
# Calculate top-10 betweenness centrality
bc = nx.betweenness_centrality(G_genre_no_singles)
sorted_bc = {k: v for k, v in sorted(bc.items(), key=lambda item: item[1], reverse=True)}
sorted_bc_top10 = {k: round(v, 4) for k, v in list(sorted_bc.items())[:10]}
stats_genre_no_singles['Betweenness centrality'] = sorted_bc_top10
with open(f'../content/networks/{genre}/withoutsingles/genre/stats.json', 'w') as fp:
json.dump(stats_genre_no_singles, fp)
""" -------------------------- Without singletons Louvain -------------------------- """
# Get Louvain partitioning
G_louvain_partition_no_singles = community.best_partition(G_genre_no_singles)
G_louvain_no_singles = G_genre_no_singles.copy()
for artist, data in G_louvain_no_singles.nodes(data=True):
data['group'] = G_louvain_partition_no_singles[artist]
# Visualise network
network_G_louvain_no_singles, config_louvain_no_singles = nw.visualize(G_louvain_no_singles, config=config, plot_in_cell_below=False)
network_G_louvain_no_singles_data = nx.node_link_data(G_louvain_no_singles)
size_map = {node['id']: node['size'] for node in network_G_louvain_no_singles_data['nodes']}
for node in network_G_louvain_no_singles['nodes']:
node['size'] = size_map[node['id']]
# Make folder and save network and config
filepath = f'../content/networks/{genre}/withoutsingles/louvain'
if not os.path.exists(filepath):
os.makedirs(filepath)
with open(f'../content/networks/{genre}/withoutsingles/louvain/network.json', 'w') as fp:
json.dump(network_G_louvain_no_singles, fp)
with open(f'../content/networks/{genre}/withoutsingles/louvain/config.json', 'w') as fp:
json.dump(config_louvain_no_singles, fp)
with open(f'../content/networks/{genre}/withoutsingles/louvain/stats.json', 'w') as fp:
json.dump(stats_genre_no_singles, fp)
save_all_networks('funk', G)
This part of the notebook will contain different analyses of the song lyrics. The main methods which will be used are TF-IDF scores which will be used to create wordclouds, sentiment analysis, dispersion plots and lastly LSA will be performed to calculate similarities between artists. Most of these methods will be applied in multiple scenarios. In general, the songs will be analysed with respect to the decade in which they were released and also according to the genre to which they belong.
def lexical_diversity(text):
return len(set(text)) / len(text)
Prior to conducting any analysis, the lyrics are preprocessed in order to prepare the data. All lyrics are tokenized and lemmatized using nltk and all tokens containing a non-alphabetic character are removed. All characters are made lowercase and for every song each word is only counted once. This is done since it is typical for songs to contain a lot of repetition (as it makes the lyrics easier to remember).
songData = pd.read_pickle('songData_sorted.df')
# This has been done and saved to songData!
# Stopwords = set(w for w in stopwords.words('english'))
# lem_fun = WordNetLemmatizer()
# all_tokens = []
# all_tokens_repeat = []
# for t in songData.lyrics:
# tokens = list(lem_fun.lemmatize(token.lower()) for token in nltk.word_tokenize(t) if token.isalpha() and lem_fun.lemmatize(token.lower()) not in Stopwords)
# all_tokens_repeat.append(tokens)
# all_tokens.append(list(set(tokens)))
# songData['tokens'] = all_tokens
# songData['tokens_repeat'] = all_tokens_repeat
Since the data stems from the Billboard hot 100 chart it is possible to show how dominant some of the genres have been through time. The figure below shows how much of the music on the chart was labelled as the given genre in each decade. Note that most songs have plenty of genre tags, so the ratios do not sum to 1 (also only the most popular genres are shown).
top_genres = ['pop', 'rock', 'rap', 'r&b', 'country', 'soul',
'singer-songwriter', 'trap', 'ballad', 'uk',
'funk', 'dance', 'electronic', 'folk',
'jazz', 'blues']
decade_genre_df = pd.DataFrame(None, columns=top_genres)
percentage_df = pd.DataFrame(None, columns=top_genres)
decade_genre_list = {decade: [0]*len(top_genres) for decade in range(1960, 2021, 10)}
for tokens, release, genres in zip(songData.tokens, songData.released, songData.genres):
decade = max(int(int(release[:4]) / 10) * 10, 1960)
for i, genre in enumerate(top_genres):
if genre in genres:
decade_genre_list[decade][i] += 1
for decade, counts in decade_genre_list.items():
decade_genre_df.loc[decade] = decade_genre_list[decade]
decade_count = sum(decade_genre_list[decade])
percentage_df.loc[decade] = [c/decade_count for c in decade_genre_list[decade]]
decade_genre_df
| pop | rock | rap | r&b | country | soul | singer-songwriter | trap | ballad | uk | funk | dance | electronic | folk | jazz | blues | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1960 | 3711 | 909 | 64 | 753 | 382 | 506 | 86 | 2 | 71 | 102 | 94 | 2 | 0 | 80 | 69 | 58 |
| 1970 | 2570 | 1268 | 43 | 844 | 375 | 582 | 288 | 0 | 192 | 165 | 293 | 19 | 3 | 75 | 24 | 34 |
| 1980 | 2482 | 1231 | 103 | 606 | 102 | 287 | 250 | 0 | 174 | 248 | 199 | 89 | 37 | 14 | 29 | 13 |
| 1990 | 1453 | 621 | 700 | 763 | 229 | 309 | 138 | 2 | 163 | 103 | 60 | 94 | 72 | 16 | 13 | 7 |
| 2000 | 1241 | 937 | 1004 | 748 | 613 | 218 | 304 | 31 | 287 | 64 | 48 | 63 | 70 | 24 | 14 | 15 |
| 2010 | 1814 | 650 | 2011 | 873 | 760 | 129 | 482 | 848 | 427 | 242 | 45 | 231 | 301 | 45 | 19 | 20 |
| 2020 | 432 | 72 | 851 | 254 | 155 | 39 | 189 | 571 | 95 | 47 | 13 | 46 | 61 | 35 | 4 | 2 |
color_picker = {'pop': '#E74C3C',
'rock': '#8E44AD',
'rap': '#3498DB',
'r&b': '#2ECC71',
'country': '#F39C12',
'soul': '#F1C40F',
'ballad': '#DCB9ED',
'trap': '#AED6F1',
'singer-songwriter':'#F5B7B1',
'funk': '#FCF3CF',
'dance': '#4F8F23',
'electronic': '#23628F',
'folk': '#6B238F',
'jazz': '#A3E4D7',
'blues': '#D4AC0D', 'uk': 'grey'}
plt.figure(figsize=(15,5), dpi=135)
n_decades = len(percentage_df)
for col in percentage_df.columns:
plt.plot(range(n_decades), percentage_df[col], 'o-', c=color_picker[col], label=col)
plt.title('Genre ratio pr. decade', size=20)
plt.legend(loc='center left', bbox_to_anchor=(1.0, 0.5))
plt.xticks(range(n_decades), decade_genre_list.keys())
plt.xlabel('Decade')
plt.ylabel('Percentage (%)')
plt.savefig("../static/images/genre_per_decade.png", bbox_inches='tight')
plt.show()
This graph and the table above illustrate a clear trend. Pop has been dominating for a long time, but since 2010 rap has overtaken the throne. Nowadays even a "subgenre" of rap, namely trap, has also become more popular than pop. Another interesting fact is that rock has almost completely vanished from the charts in the last decade whereas folk has remained pretty consistent throughout time. This graph also illustrates when rap started gaining traction in the US around the eighties.
The TF-IDF (term frequency, inverse document frequency) score is a measure of how much a term relates to the characteristics of a document. In this study, terms are of course words in the lyrics of songs and documents can be either decade, genre or artist - according to the scenario we are interested in analysing. The TF is simply how many times a given term occurs in the document and IDF is a measure of how unique the term is given by:
\begin{equation} \text{idf}(t, D) = \log\left(\frac{N}{|d\in D:t\in d|}\right) \end{equation}where $t$ is a term and $D$ is the set of documents, denoted as the corpus. The TF-IDF is the product of TF and IDF, meaning that terms are most important if they occur frequently in the given document while also not appearing in any other document.
def idf(term: str, docs: {int: {str}}, log=np.log2):
n = len(docs.keys())
d = sum(term in doc for doc in docs.values())
return log(n/d)
The data contains 582 genres. Many of these are sub-genres of the main genres which we all know and love. Importantly, many songs are tagged as several different genres. This is handled by assigning the song to all genres of which it is tagged. This creates some overlap between the genres, but this is only an issue for subgenres. Using all genres is thus not desirable since it is not relevant how pop relates to dance-pop or alternative-pop, but it is relevant how pop relates to rap and rock. Therefore, the genres which will constitute the corpus were handselected from the genres which appear the most from 1960-2022.
genre_count = defaultdict(lambda: 0)
for genres in songData.genres:
for genre in genres:
genre_count[genre] += 1
# Handpick genres
top_genres = ['pop', 'rock', 'rap', 'r&b', 'country', 'soul',
'singer-songwriter', 'trap', 'ballad', 'uk',
'funk', 'dance', 'electronic', 'folk',
'jazz', 'blues']
N = len(top_genres)
# Calculate all genre documents
genre_docs = defaultdict(lambda: [])
for tokens, genres in zip(songData.tokens, songData.genres):
for genre in genres:
genre_docs[genre] += tokens
# Choose only those in "top_genres"
top_genre_docs = {genre: doc for genre, doc in genre_docs.items() if genre in top_genres}
# Calculate the IDF scores for all terms in the corpus.
top_genre_docs_set = {genre: set(doc) for genre, doc in top_genre_docs.items()}
all_terms = set()
for doc in top_genre_docs.values():
all_terms = all_terms.union(set(doc))
genre_idf_dict = {t: idf(t, top_genre_docs_set) for t in all_terms}
# Loop through all top genres and calculate TF-IDF
for genre, doc in top_genre_docs.items():
print('='*50)
print(genre)
fdist = nltk.FreqDist(doc)
N = len(doc)
stock_tfidf = {t: fdist.freq(t) * genre_idf_dict[t] for t in set(doc)}
tfidf_keys = [k[0] for k in sorted(stock_tfidf.items(), key=lambda x: x[1], reverse=True)[:10]]
print(f'{"TF":>14} {"TFIDF":>25}')
i = 1
for (tf_word, _), iftdf_word in zip(fdist.most_common(10), tfidf_keys[:10]):
print(f'{str(i)+".":<4} {tf_word:<8} {_/N:.4f} {iftdf_word:>17} {stock_tfidf[iftdf_word]:.5f}')
i += 1
print('')
==================================================
pop
TF TFIDF
1. know 0.0100 chorus 0.00009
2. love 0.0099 miscellaneous 0.00007
3. oh 0.0077 broken 0.00006
4. like 0.0077 party 0.00006
5. got 0.0072 breaking 0.00006
6. time 0.0070 breathe 0.00005
7. go 0.0066 rainbow 0.00005
8. one 0.0063 happen 0.00005
9. na 0.0062 nigga 0.00005
10. see 0.0062 spoken 0.00005
==================================================
folk
TF TFIDF
1. know 0.0085 annihilation 0.00031
2. like 0.0079 squandered 0.00025
3. time 0.0065 ragged 0.00022
4. wa 0.0064 birch 0.00021
5. love 0.0063 knowed 0.00021
6. one 0.0057 sunlit 0.00021
7. come 0.0056 canal 0.00021
8. go 0.0055 bojangles 0.00018
9. say 0.0052 suppertime 0.00018
10. day 0.0052 hitchhike 0.00018
==================================================
blues
TF TFIDF
1. know 0.0097 layla 0.00039
2. oh 0.0096 conveniency 0.00035
3. love 0.0083 scroungy 0.00035
4. got 0.0082 watchtower 0.00035
5. baby 0.0082 unawares 0.00035
6. like 0.0076 tuffies 0.00035
7. yeah 0.0073 seeped 0.00035
8. go 0.0069 goanna 0.00035
9. time 0.0068 enriched 0.00035
10. na 0.0068 plowman 0.00035
==================================================
r&b
TF TFIDF
1. know 0.0097 nigga 0.00024
2. love 0.0089 shawty 0.00015
3. oh 0.0083 shorty 0.00015
4. baby 0.0080 wit 0.00013
5. got 0.0079 hoe 0.00012
6. yeah 0.0077 crib 0.00012
7. like 0.0075 playa 0.00011
8. na 0.0070 pussy 0.00011
9. get 0.0067 booty 0.00010
10. time 0.0066 dick 0.00009
==================================================
jazz
TF TFIDF
1. know 0.0098 billow 0.00049
2. love 0.0093 ina 0.00040
3. like 0.0081 tugboat 0.00040
4. got 0.0072 yuletide 0.00036
5. oh 0.0071 bough 0.00034
6. make 0.0064 exemption 0.00030
7. time 0.0063 nantsi 0.00030
8. see 0.0062 macdonald 0.00030
9. come 0.0061 drippins 0.00030
10. one 0.0060 natsi 0.00030
==================================================
country
TF TFIDF
1. know 0.0084 hillbilly 0.00021
2. like 0.0082 tailgate 0.00021
3. love 0.0078 tractor 0.00018
4. got 0.0070 porch 0.00018
5. time 0.0065 redneck 0.00016
6. one 0.0062 floorboard 0.00013
7. go 0.0061 hank 0.00013
8. get 0.0059 gravel 0.00012
9. wa 0.0059 bocephus 0.00012
10. yeah 0.0055 southern 0.00012
==================================================
rock
TF TFIDF
1. know 0.0092 broken 0.00007
2. love 0.0078 breathe 0.00007
3. like 0.0075 tailgate 0.00006
4. got 0.0071 fear 0.00006
5. time 0.0067 sailor 0.00006
6. oh 0.0066 redneck 0.00005
7. go 0.0063 breaking 0.00005
8. get 0.0060 escape 0.00005
9. one 0.0060 southern 0.00005
10. say 0.0058 floorboard 0.00005
==================================================
singer-songwriter
TF TFIDF
1. know 0.0096 porch 0.00009
2. like 0.0084 hee 0.00007
3. love 0.0082 ciara 0.00007
4. oh 0.0073 breathe 0.00007
5. time 0.0070 darkchild 0.00007
6. got 0.0070 wonderin 0.00007
7. yeah 0.0063 redneck 0.00007
8. get 0.0063 fear 0.00006
9. go 0.0063 krishna 0.00006
10. one 0.0062 bobber 0.00006
==================================================
soul
TF TFIDF
1. love 0.0112 looka 0.00017
2. know 0.0108 doggone 0.00009
3. oh 0.0103 hoo 0.00009
4. baby 0.0091 maceo 0.00009
5. yeah 0.0084 nigga 0.00009
6. got 0.0081 untrue 0.00008
7. time 0.0076 ohhh 0.00008
8. na 0.0076 infatuation 0.00007
9. like 0.0073 satisfaction 0.00007
10. make 0.0070 ooooh 0.00006
==================================================
rap
TF TFIDF
1. like 0.0056 nigga 0.00065
2. got 0.0055 hoe 0.00046
3. know 0.0052 dawg 0.00037
4. get 0.0051 rapper 0.00031
5. yeah 0.0044 bitch 0.00028
6. ai 0.0044 pussy 0.00027
7. go 0.0042 dick 0.00027
8. back 0.0038 opps 0.00024
9. make 0.0038 beef 0.00023
10. see 0.0038 wit 0.00022
==================================================
ballad
TF TFIDF
1. know 0.0106 breathe 0.00012
2. love 0.0099 broken 0.00011
3. like 0.0083 porch 0.00011
4. time 0.0079 prayer 0.00008
5. oh 0.0073 perfect 0.00008
6. never 0.0069 wasted 0.00008
7. go 0.0068 breaking 0.00007
8. one 0.0066 beale 0.00007
9. see 0.0063 warred 0.00007
10. got 0.0062 pane 0.00007
==================================================
funk
TF TFIDF
1. know 0.0096 looka 0.00042
2. oh 0.0089 funk 0.00024
3. love 0.0085 maceo 0.00022
4. got 0.0085 funky 0.00018
5. get 0.0080 funkin 0.00016
6. yeah 0.0079 wit 0.00015
7. baby 0.0076 aflame 0.00012
8. like 0.0073 jab 0.00012
9. na 0.0072 maganoo 0.00012
10. time 0.0069 karat 0.00012
==================================================
uk
TF TFIDF
1. know 0.0094 mum 0.00023
2. love 0.0082 cah 0.00016
3. oh 0.0074 greaze 0.00016
4. like 0.0073 uk 0.00014
5. got 0.0066 transmission 0.00014
6. time 0.0064 arsehole 0.00013
7. go 0.0062 krishna 0.00012
8. see 0.0057 blud 0.00012
9. never 0.0057 paigons 0.00012
10. ca 0.0055 cuh 0.00011
==================================================
trap
TF TFIDF
1. like 0.0062 nigga 0.00097
2. got 0.0062 dawg 0.00070
3. yeah 0.0057 hoe 0.00065
4. know 0.0056 opps 0.00063
5. get 0.0055 skrrt 0.00059
6. ai 0.0052 patek 0.00053
7. nigga 0.0050 slime 0.00052
8. bitch 0.0050 chopper 0.00050
9. shit 0.0046 wheezy 0.00048
10. go 0.0045 pussy 0.00048
==================================================
dance
TF TFIDF
1. know 0.0095 una 0.00017
2. like 0.0090 uzi 0.00016
3. got 0.0085 lazer 0.00016
4. love 0.0081 party 0.00016
5. yeah 0.0080 해 0.00014
6. oh 0.0079 donk 0.00014
7. get 0.0076 erotica 0.00014
8. na 0.0076 booty 0.00013
9. go 0.0075 derulo 0.00012
10. baby 0.0072 khan 0.00012
==================================================
electronic
TF TFIDF
1. know 0.0088 uzi 0.00034
2. like 0.0087 vert 0.00022
3. got 0.0072 너의 0.00021
4. go 0.0068 날 0.00019
5. get 0.0067 lamborghini 0.00016
6. yeah 0.0067 evolves 0.00016
7. time 0.0065 nigga 0.00015
8. oh 0.0064 그 0.00013
9. love 0.0064 해 0.00013
10. na 0.0062 su 0.00013
As is evident by the output above, the TF-IDF scores succeed in highlighting a lot of the characteristics of the different genres.
Wordclouds are useful for illustrating the important terms since the importance corresponds to the fontsize of the term. This makes for a nice visual representation which grants a much clearer overview of the similarities and differences between documents (in this case genres)
As a small note, the wordclouds are displayed with masks of well-known musicians from the given genre. The original images are transparently overlayed to aid the image clearity. Theses images are used on the website and to avoid any ugly background a background-removing-helper-function is implemented
# With inspiration from Geeksforgeeks
def convertImage(file):
img = Image.open(file)
img = img.convert("RGBA")
datas = img.getdata()
newData = []
for item in datas:
if item[0] == 255 and item[1] == 255 and item[2] == 255:
newData.append((255, 255, 255, 0))
else:
newData.append(item)
img.putdata(newData)
return img
# Load genre images
genre_files = glob('wordcloud_masks/genres/*')
genres_with_images = {file.split('\\')[-1].split('.')[0]: file for file in genre_files}
genre_ims = {genre: np.array(Image.open(f"wordcloud_masks/genres/{genre}.jpg")) for genre in top_genre_docs.keys() if genre in genres_with_images.keys()}
# Create Wordclouds in 3x3 grid and save figure with transparent background
plt.figure(dpi=400)
for i, genre in enumerate(genre_ims.keys()):
fdist = nltk.FreqDist(genre_docs[genre])
genre_tfidf = {t: fdist.freq(t) * genre_idf_dict[t] for t in set(genre_docs[genre])}
wc = WordCloud(mode='RGBA', background_color=None, mask=genre_ims[genre])
wc.generate_from_frequencies(genre_tfidf)
image_colors = ImageColorGenerator(genre_ims[genre])
plt.subplot(3, 3, i+1)
plt.imshow(wc.recolor(color_func=image_colors), interpolation='bilinear')
im = convertImage(f"wordcloud_masks/genres/{genre}.jpg")
plt.imshow(im, interpolation='nearest', alpha=0.2)
plt.title(genre, fontsize=6)
plt.axis("off")
plt.tight_layout()
plt.savefig('../static/images/genre_clouds.png', bbox_inches='tight')
plt.show()
The masks have been chosen somewhat arbitrarily, but hopefully some of the artists are recognisable. Looking at the wordcloud for country an extremely clear tendency is evident. All terms of significant TF-IDF score describes everyday-activities relevant for farmers in the US and alike. The UK wordcloud contains a lot of british slang such as mum, paigons, blud and ting, and the rap wordcloud is all about the harsh language which is known for today.
The same procedure is then done while instead dividing the songs according to the decade in which they were released.
# Create decade documents
decade_docs = defaultdict(lambda: [])
for tokens, release, genres in zip(songData.tokens, songData.released, songData.genres):
decade = max(int(int(release[:4]) / 10) * 10, 1960)
decade_docs[decade] += tokens
decade_docs = {k: v for k, v in sorted(decade_docs.items(), key=lambda item: int(item[0]))}
# Calculate IDF scores
decade_docs_set = {decade: set(doc) for decade, doc in decade_docs.items()}
all_terms = set()
for doc in decade_docs.values():
all_terms = all_terms.union(set(doc))
idf_dict = {t: idf(t, decade_docs_set) for t in all_terms}
# Calculate TF-IDF scores
for decade, doc in decade_docs.items():
print('='*50)
print(decade)
fdist = nltk.FreqDist(doc)
N = len(doc)
stock_tfidf = {t: fdist.freq(t) * idf_dict[t] for t in set(doc)}
tfidf_keys = [k[0] for k in sorted(stock_tfidf.items(), key=lambda x: x[1], reverse=True)[:10]]
print(f'{"TF":>14} {"TFIDF":>25}')
i = 1
for (tf_word, _), iftdf_word in zip(fdist.most_common(10), tfidf_keys[:10]):
print(f'{str(i)+".":<4} {tf_word:<8} {_/N:.4f} {iftdf_word:>17} {stock_tfidf[iftdf_word]:.5f}')
i += 1
print('')
==================================================
1960
TF TFIDF
1. love 0.0122 watusi 0.00011
2. know 0.0103 tenderly 0.00009
3. oh 0.0083 looka 0.00007
4. go 0.0069 sighin 0.00007
5. got 0.0069 hully 0.00006
6. like 0.0068 billow 0.00006
7. come 0.0067 rovin 0.00006
8. one 0.0066 fickle 0.00005
9. baby 0.0065 twine 0.00005
10. time 0.0064 doggone 0.00005
==================================================
1970
TF TFIDF
1. know 0.0099 nigger 0.00006
2. love 0.0098 doggone 0.00005
3. got 0.0079 gentleness 0.00005
4. oh 0.0078 toad 0.00004
5. like 0.0073 unkind 0.00004
6. time 0.0071 uum 0.00004
7. get 0.0065 nibbling 0.00004
8. come 0.0063 marianne 0.00004
9. go 0.0062 thoughtful 0.00004
10. na 0.0061 salina 0.00004
==================================================
1980
TF TFIDF
1. know 0.0100 glancing 0.00005
2. love 0.0098 temperamental 0.00005
3. time 0.0078 marketplace 0.00004
4. got 0.0074 untried 0.00004
5. oh 0.0072 jellybean 0.00004
6. like 0.0072 outgrown 0.00004
7. one 0.0065 trouper 0.00004
8. go 0.0064 sightless 0.00004
9. say 0.0063 frantic 0.00003
10. get 0.0063 inflation 0.00003
==================================================
1990
TF TFIDF
1. know 0.0076 cristal 0.00009
2. love 0.0066 quik 0.00008
3. like 0.0064 dank 0.00008
4. time 0.0060 phillie 0.00007
5. got 0.0059 floss 0.00007
6. get 0.0053 buckwild 0.00007
7. make 0.0053 betta 0.00006
8. see 0.0053 ballers 0.00006
9. na 0.0053 representin 0.00006
10. go 0.0052 rump 0.00006
==================================================
2000
TF TFIDF
1. know 0.0074 crunk 0.00013
2. like 0.0069 luda 0.00013
3. got 0.0063 shorty 0.00011
4. get 0.0058 cris 0.00010
5. go 0.0055 shawty 0.00010
6. love 0.0054 swag 0.00009
7. see 0.0053 konvict 0.00008
8. na 0.0052 darkchild 0.00008
9. yeah 0.0052 dro 0.00007
10. one 0.0051 titty 0.00007
==================================================
2010
TF TFIDF
1. like 0.0070 wraith 0.00028
2. know 0.0066 skrrt 0.00027
3. got 0.0063 ayy 0.00022
4. yeah 0.0057 brrt 0.00019
5. get 0.0056 instagram 0.00017
6. go 0.0051 thot 0.00016
7. na 0.0047 swag 0.00013
8. love 0.0046 maybach 0.00013
9. time 0.0045 hunnid 0.00012
10. make 0.0044 bae 0.00012
==================================================
2020
TF TFIDF
1. like 0.0064 opp 0.00069
2. got 0.0061 skrrt 0.00048
3. know 0.0060 opps 0.00047
4. yeah 0.0057 ayy 0.00035
5. get 0.0055 brrt 0.00034
6. ai 0.0047 baow 0.00033
7. go 0.0047 grrah 0.00031
8. wa 0.0045 wraith 0.00030
9. ca 0.0042 draco 0.00030
10. one 0.0042 hunnid 0.00029
class MyColorFunctor():
def __init__(self, tfidf):
self.tfidf = tfidf
self.high = max(tfidf.values())
self.low = min(tfidf.values())
def scale(self, x):
return 210 + (x - self.low)/(self.high - self.low) * 150
def __call__(self,word,font_size,position,orientation,random_state=None,**kwargs):
return "hsl(%d, 80%%, %d%%)" % (self.scale(self.tfidf[word]), 50)
decade_ims = {decade: np.array(Image.open(f"wordcloud_masks/decades/{decade}.png")) for decade in decade_docs.keys()}
n_decades = len(decade_docs.keys())
plt.figure(figsize=(30,15), dpi=400)
gs = gridspec.GridSpec(2, n_decades+1)
for i, (decade, doc) in enumerate(decade_docs.items()):
fdist = nltk.FreqDist(doc)
decade_tfidf = {t: fdist.freq(t) * idf_dict[t] for t in set(doc)}
wordcloud = WordCloud(mode='RGBA', background_color=None, mask=decade_ims[decade], color_func=MyColorFunctor(decade_tfidf))
wordcloud.generate_from_frequencies(decade_tfidf)
if i < ((n_decades+1)//2):
ax = plt.subplot(gs[0, 2 * i:2 * i + 2])
else:
ax = plt.subplot(gs[1, 2 * i - n_decades:2 * i + 2 - n_decades])
ax.imshow(wordcloud, interpolation='bilinear')
ax.set_title(decade, size=20)
plt.axis("off")
plt.savefig('decade_wordcloud.png')
plt.show()
for i, (decade, doc) in enumerate(decade_docs.items()):
fdist = nltk.FreqDist(doc)
decade_tfidf = {t: fdist.freq(t) * idf_dict[t] for t in set(doc)}
wordcloud = WordCloud(mode='RGBA', background_color=None, mask=decade_ims[decade], color_func=MyColorFunctor(decade_tfidf))
wordcloud.generate_from_frequencies(decade_tfidf)
plt.figure(dpi=100)
plt.imshow(wordcloud, interpolation='bilinear')
plt.title(decade, fontsize=16)
plt.axis('off')
plt.tight_layout()
plt.savefig(f'../static/images/decades/{decade}.png')
In the 60's, seventies and eighties, most words are completely normal words which everyone might use in their everyday life. Some perhaps more expressive and expressive than ordinary speech, but still real words. Also some quite romantic words like tenderly are used. In the 60's, the word watusi was used a lot. That is because it is the name of a popular dance at the time. In the 70's, doggone is used a lot. It has in more reason times been completely replaced with the term damn. In the seventies the term nigger also has a high TF-IDF score which is surprising, but the reason is that 5 different songs mentions the word in the 70's and it is never mentioned in another decade. In most of these songs it is used to provoke.
The 90's almost seem like a transitioning time from the old school to the new school of mainstream music. That is when rap entered the music scene for good. In the 00's mostly slang words fill the wordcloud. These slang words are mainly attributed to the rap/hip-hop artists. Some examples are shawty and swag. Also some of the most influencial artists and producers appear such as Ludacris and Darkchild.
Lastly, in the 10's and 20's the wordclouds are filled with ad-libs such as skrrt, brrt, ayy and baow, and modern slang/shorthands like opp meaning opponent, and hunnid meaning hundred.
Since there is 7855 artists in the dataset the artists which will be considered in the corpus will be those which have managed to appear on the hot 100 chart at least 10 times. This is done to achieve documents which actually can have different term frequencies for each term and also to show how the well-known artists differ from each other in their use of words. Identically to the genres, some songs are shared by multiple artists (thank god for that, otherwise there would be no network). This is handled in the same way, meaning that if two artists colaborated on a song, then they both are assigned all the words in the song. This seems fair since putting ones name on a song automaticly means you are associated with the whole song.
artist_count = defaultdict(lambda: 0)
for artists in songData.artists:
for artist in artists:
artist_count[artist] += 1
artist_count = {k: v for k, v in sorted(artist_count.items(), key=lambda item: item[1], reverse=True)}
top_artists = list(artist for artist, count in artist_count.items() if count >= 10)
print('Total number of artists:', len(artist_count))
print('Number of top artists:', len(top_artists))
Total number of artists: 7855 Number of top artists: 735
This still is quite a lot of musicians, so some of the most well-known artists have been selected for investigation. In total there are 41 selected artists for whom a picture of them is available - making the wordclouds nicer to look at! These artists are:
# Create artist documents
artist_docs = defaultdict(lambda: [])
for tokens, artists in zip(songData.tokens, songData.artists):
for artist in artists:
artist_docs[artist] += tokens
top_artist_docs = {artist: doc for artist, doc in artist_docs.items() if artist in top_artists}
artists_with_images = {'.'.join(file.split('\\')[-1].split('.')[:-1]): file for file in glob('wordcloud_masks/artists/*')}
artist_ims = {artist: np.array(Image.open(artists_with_images[artist])) for artist in top_artist_docs.keys() if artist in artists_with_images.keys()}
print('Artists with images:')
for artist in artists_with_images.keys():
print(artist, end=', ')
Artists with images: aretha franklin, ariana grande, beyoncé, billie eilish, britney spears, cher, chris brown, dj khaled, drake, ed sheeran, elton john, elvis presley, eminem, frank sinatra, future, j. cole, james brown, jay-z, juice wrld, justin bieber, kanye west, katy perry, lil baby, lil durk, lil uzi vert, lil wayne, madonna, marvin gaye, michael jackson, miley cyrus, nicki minaj, prince, queen, snoop dogg, stevie wonder, taylor swift, the beatles, the weeknd, travis scott, unknown, young thug, youngboy never broke again,
# Calculate IDF scores
top_artist_docs_set = {artist: set(doc) for artist, doc in top_artist_docs.items()}
all_terms = set()
for doc in top_artist_docs.values():
all_terms = all_terms.union(set(doc))
idf_dict = {t: idf(t, top_artist_docs_set) for t in all_terms}
# For each artist who is a "top artist" calculate the TF-IDF scores
for artist, doc in top_artist_docs.items():
if artist not in artist_ims.keys():
continue
print('='*50)
print(artist)
fdist = nltk.FreqDist(doc)
N = len(doc)
stock_tfidf = {t: fdist.freq(t) * idf_dict[t] for t in set(doc)}
tfidf_keys = [k[0] for k in sorted(stock_tfidf.items(), key=lambda x: x[1], reverse=True)[:10]]
print(f'{"TF":>14} {"TFIDF":>25}')
i = 1
for (tf_word, _), iftdf_word in zip(fdist.most_common(10), tfidf_keys[:10]):
print(f'{str(i)+".":<4} {tf_word:<8} {_/N:.4f} {iftdf_word:>17} {stock_tfidf[iftdf_word]:.5f}')
i += 1
print('')
==================================================
frank sinatra
TF TFIDF
1. love 0.0107 reminding 0.00657
2. like 0.0096 interlude 0.00613
3. heart 0.0090 musical 0.00613
4. come 0.0090 sleigh 0.00595
5. go 0.0079 carousel 0.00579
6. wa 0.0079 perhaps 0.00538
7. know 0.0079 exemption 0.00537
8. never 0.0073 gentry 0.00537
9. day 0.0073 weeell 0.00537
10. time 0.0068 goldang 0.00537
==================================================
elvis presley
TF TFIDF
1. love 0.0132 darling 0.00464
2. know 0.0107 luck 0.00365
3. like 0.0084 thumbing 0.00353
4. go 0.0081 surrender 0.00318
5. oh 0.0079 flaming 0.00308
6. heart 0.0076 sleet 0.00296
7. got 0.0074 mention 0.00291
8. time 0.0074 memorize 0.00290
9. never 0.0069 tender 0.00281
10. right 0.0066 lip 0.00279
==================================================
james brown
TF TFIDF
1. got 0.0111 looka 0.03249
2. know 0.0111 maceo 0.01197
3. get 0.0093 ow 0.00926
4. come 0.0089 byrd 0.00902
5. love 0.0086 fred 0.00887
6. want 0.0086 james 0.00736
7. na 0.0084 funky 0.00723
8. one 0.0084 huh 0.00603
9. good 0.0084 fella 0.00578
10. oh 0.0082 brother 0.00562
==================================================
the beatles
TF TFIDF
1. know 0.0152 writer 0.00442
2. love 0.0124 log 0.00400
3. oh 0.0108 sad 0.00387
4. like 0.0104 pilchard 0.00381
5. see 0.0100 findst 0.00381
6. say 0.0088 knickers 0.00381
7. got 0.0084 cornflake 0.00381
8. want 0.0084 naa 0.00381
9. think 0.0072 mao 0.00381
10. need 0.0072 confidentially 0.00381
==================================================
juice wrld
TF TFIDF
1. yeah 0.0077 fuck 0.00856
2. got 0.0075 nigga 0.00770
3. like 0.0072 shit 0.00738
4. know 0.0068 drug 0.00733
5. ai 0.0060 bitch 0.00690
6. get 0.0060 ayy 0.00681
7. feel 0.0054 codeine 0.00647
8. uh 0.0053 demon 0.00646
9. fuck 0.0049 tryna 0.00613
10. oh 0.0048 percs 0.00570
==================================================
aretha franklin
TF TFIDF
1. oh 0.0137 aretha 0.00500
2. yeah 0.0126 darling 0.00327
3. know 0.0121 smelled 0.00313
4. baby 0.0121 although 0.00302
5. love 0.0118 denying 0.00288
6. got 0.0089 hoo 0.00286
7. right 0.0078 lonesome 0.00284
8. one 0.0075 doo 0.00275
9. time 0.0073 winding 0.00272
10. like 0.0073 gentle 0.00264
==================================================
lil wayne
TF TFIDF
1. like 0.0054 nigga 0.00810
2. got 0.0053 tunechi 0.00783
3. yeah 0.0051 weezy 0.00735
4. get 0.0048 bitch 0.00720
5. know 0.0046 fuck 0.00689
6. nigga 0.0044 shit 0.00588
7. bitch 0.0042 pussy 0.00565
8. ai 0.0042 mula 0.00446
9. see 0.0040 carter 0.00437
10. fuck 0.0040 wayne 0.00425
==================================================
marvin gaye
TF TFIDF
1. baby 0.0147 darling 0.00924
2. love 0.0134 sugar 0.00761
3. oh 0.0125 marvin 0.00677
4. know 0.0115 tammi 0.00545
5. got 0.0096 diana 0.00513
6. want 0.0086 honey 0.00511
7. like 0.0086 joy 0.00484
8. go 0.0077 sweetheart 0.00465
9. make 0.0077 inflation 0.00429
10. thing 0.0070 misery 0.00424
==================================================
stevie wonder
TF TFIDF
1. know 0.0107 greeted 0.00413
2. love 0.0097 harmonica 0.00365
3. oh 0.0082 stevie 0.00343
4. time 0.0080 parent 0.00325
5. yeah 0.0078 jamming 0.00294
6. say 0.0075 agreed 0.00294
7. one 0.0073 troubled 0.00284
8. go 0.0063 rescue 0.00268
9. heart 0.0063 clap 0.00250
10. life 0.0063 cruel 0.00235
==================================================
cher
TF TFIDF
1. love 0.0131 mating 0.00516
2. know 0.0100 castle 0.00403
3. go 0.0096 tumbling 0.00366
4. never 0.0077 linliness 0.00366
5. got 0.0077 mystify 0.00366
6. baby 0.0073 ascending 0.00366
7. say 0.0073 mumbled 0.00366
8. like 0.0073 moldering 0.00366
9. one 0.0069 categorize 0.00366
10. thing 0.0069 uptighten 0.00366
==================================================
elton john
TF TFIDF
1. oh 0.0106 misread 0.00400
2. like 0.0088 discard 0.00400
3. got 0.0077 hardened 0.00383
4. see 0.0072 fragment 0.00383
5. love 0.0072 lingers 0.00380
6. time 0.0066 bopping 0.00369
7. make 0.0058 youth 0.00358
8. know 0.0058 allow 0.00332
9. life 0.0053 sniffing 0.00329
10. wa 0.0053 anythin 0.00329
==================================================
michael jackson
TF TFIDF
1. love 0.0107 aaow 0.01745
2. know 0.0088 hoo 0.01255
3. get 0.0085 shamone 0.01196
4. oh 0.0082 hee 0.01036
5. baby 0.0082 doom 0.00483
6. see 0.0075 fulfill 0.00426
7. come 0.0072 dah 0.00410
8. feel 0.0069 tomb 0.00353
9. yeah 0.0066 carefree 0.00347
10. need 0.0066 human 0.00328
==================================================
snoop dogg
TF TFIDF
1. got 0.0060 dogg 0.02044
2. know 0.0059 snoop 0.01850
3. like 0.0058 nigga 0.00770
4. get 0.0056 doggy 0.00642
5. ai 0.0048 shit 0.00582
6. back 0.0048 g 0.00552
7. yeah 0.0047 chronic 0.00529
8. see 0.0047 bitch 0.00460
9. dogg 0.0046 dizzle 0.00444
10. snoop 0.0044 motherfucker 0.00428
==================================================
queen
TF TFIDF
1. yeah 0.0120 grousin 0.00673
2. ooh 0.0099 gelatine 0.00673
3. love 0.0099 fastidious 0.00673
4. get 0.0092 nosing 0.00673
5. way 0.0085 baroness 0.00673
6. got 0.0085 extraordinarily 0.00673
7. ca 0.0078 minah 0.00673
8. time 0.0078 versed 0.00673
9. oh 0.0078 warily 0.00673
10. na 0.0071 relief 0.00639
==================================================
prince
TF TFIDF
1. baby 0.0095 funky 0.00549
2. yeah 0.0086 trojan 0.00523
3. oh 0.0086 alphabet 0.00502
4. love 0.0078 corvette 0.00493
5. know 0.0078 horse 0.00456
6. come 0.0078 ow 0.00439
7. get 0.0078 poetry 0.00431
8. got 0.0073 power 0.00418
9. say 0.0069 oops 0.00411
10. na 0.0065 lovesexy 0.00411
==================================================
madonna
TF TFIDF
1. know 0.0107 bursting 0.00422
2. love 0.0091 hesitating 0.00373
3. like 0.0088 view 0.00371
4. na 0.0085 silky 0.00366
5. go 0.0085 express 0.00350
6. see 0.0075 point 0.00326
7. say 0.0069 justify 0.00310
8. make 0.0066 romance 0.00306
9. time 0.0066 magical 0.00303
10. let 0.0066 tock 0.00300
==================================================
jay-z
TF TFIDF
1. like 0.0053 hov 0.01049
2. know 0.0050 nigga 0.00795
3. got 0.0049 shit 0.00626
4. yeah 0.0045 jigga 0.00594
5. get 0.0045 fuck 0.00538
6. ai 0.0044 roc 0.00469
7. back 0.0043 rap 0.00404
8. nigga 0.0043 jay 0.00386
9. let 0.0040 bitch 0.00377
10. shit 0.0040 hova 0.00376
==================================================
eminem
TF TFIDF
1. like 0.0038 fuck 0.00550
2. got 0.0038 shady 0.00506
3. get 0.0038 shit 0.00499
4. know 0.0036 dre 0.00495
5. go 0.0034 fuckin 0.00485
6. back 0.0033 bitch 0.00447
7. say 0.0033 marshall 0.00364
8. yeah 0.0033 slim 0.00357
9. wa 0.0032 hailie 0.00355
10. fuck 0.0032 rap 0.00327
==================================================
britney spears
TF TFIDF
1. see 0.0115 britney 0.01632
2. like 0.0115 intoxicate 0.00731
3. got 0.0106 womanizer 0.00439
4. baby 0.0106 clawfoot 0.00439
5. know 0.0101 rational 0.00439
6. oh 0.0097 ringleader 0.00439
7. yeah 0.0092 uncontrollably 0.00439
8. go 0.0088 lago 0.00439
9. ca 0.0088 overprotected 0.00439
10. na 0.0088 edginess 0.00439
==================================================
beyoncé
TF TFIDF
1. like 0.0070 beyoncé 0.00418
2. know 0.0070 fuck 0.00363
3. oh 0.0069 b 0.00360
4. got 0.0064 bitch 0.00355
5. love 0.0061 flawless 0.00345
6. let 0.0058 shit 0.00329
7. baby 0.0058 nigga 0.00302
8. go 0.0057 roc 0.00282
9. see 0.0054 bey 0.00272
10. gon 0.0054 houston 0.00270
==================================================
kanye west
TF TFIDF
1. like 0.0057 nigga 0.00646
2. know 0.0057 ye 0.00623
3. got 0.0056 shit 0.00448
4. get 0.0055 kanye 0.00445
5. ai 0.0050 bitch 0.00430
6. go 0.0049 yeezy 0.00429
7. yeah 0.0046 jesus 0.00428
8. wa 0.0046 fuck 0.00413
9. let 0.0045 chi 0.00310
10. see 0.0041 tryna 0.00299
==================================================
chris brown
TF TFIDF
1. yeah 0.0078 nigga 0.00630
2. oh 0.0075 fuck 0.00565
3. got 0.0075 woah 0.00513
4. like 0.0074 breezy 0.00499
5. know 0.0072 bitch 0.00494
6. let 0.0069 shit 0.00486
7. get 0.0066 ayy 0.00473
8. girl 0.0065 chris 0.00447
9. baby 0.0063 pussy 0.00416
10. ai 0.0063 shawty 0.00400
==================================================
katy perry
TF TFIDF
1. like 0.0107 daisy 0.00692
2. know 0.0095 katy 0.00682
3. yeah 0.0088 utopia 0.00598
4. one 0.0080 popsicle 0.00573
5. oh 0.0080 lion 0.00470
6. got 0.0080 blur 0.00463
7. go 0.0076 perry 0.00455
8. na 0.0068 receipt 0.00403
9. get 0.0064 motel 0.00403
10. take 0.0064 despise 0.00403
==================================================
dj khaled
TF TFIDF
1. one 0.0058 khaled 0.02272
2. got 0.0058 dj 0.01260
3. khaled 0.0057 nigga 0.00834
4. dj 0.0057 fuck 0.00739
5. like 0.0055 bitch 0.00698
6. yeah 0.0054 shit 0.00648
7. know 0.0054 music 0.00400
8. ai 0.0053 tunechi 0.00378
9. get 0.0053 fuckin 0.00356
10. best 0.0051 bos 0.00356
==================================================
taylor swift
TF TFIDF
1. like 0.0095 flashback 0.00415
2. know 0.0094 screaming 0.00296
3. time 0.0079 taylor 0.00227
4. wa 0.0075 laughing 0.00223
5. never 0.0068 stood 0.00221
6. oh 0.0064 undone 0.00221
7. say 0.0064 watched 0.00220
8. one 0.0062 dress 0.00217
9. back 0.0061 casually 0.00208
10. love 0.0059 wishing 0.00205
==================================================
miley cyrus
TF TFIDF
1. like 0.0112 miley 0.00830
2. na 0.0098 tamed 0.00493
3. get 0.0085 creepy 0.00425
4. know 0.0085 hearsay 0.00425
5. go 0.0085 boatin 0.00425
6. got 0.0076 misinformation 0.00425
7. oh 0.0076 countrify 0.00425
8. never 0.0076 diagonal 0.00425
9. make 0.0071 crashing 0.00389
10. gon 0.0067 zig 0.00380
==================================================
drake
TF TFIDF
1. yeah 0.0060 nigga 0.00891
2. got 0.0059 shit 0.00744
3. like 0.0059 fuck 0.00644
4. know 0.0059 drake 0.00536
5. get 0.0056 bitch 0.00515
6. nigga 0.0049 ayy 0.00419
7. shit 0.0047 tryna 0.00400
8. one 0.0045 ovo 0.00372
9. back 0.0044 drizzy 0.00371
10. go 0.0044 fuckin 0.00276
==================================================
nicki minaj
TF TFIDF
1. like 0.0063 nicki 0.01208
2. got 0.0063 bitch 0.00841
3. get 0.0061 nigga 0.00819
4. yeah 0.0058 fuck 0.00795
5. ai 0.0055 yo 0.00580
6. know 0.0054 shit 0.00556
7. bitch 0.0050 barbie 0.00550
8. let 0.0047 pussy 0.00545
9. fuck 0.0046 minaj 0.00498
10. go 0.0045 dick 0.00458
==================================================
justin bieber
TF TFIDF
1. know 0.0107 woah 0.00532
2. oh 0.0100 tryna 0.00407
3. yeah 0.0094 jb 0.00396
4. like 0.0093 mistletoe 0.00336
5. love 0.0086 merry 0.00269
6. got 0.0083 christmas 0.00259
7. let 0.0082 reindeer 0.00246
8. make 0.0078 pressure 0.00243
9. time 0.0072 livid 0.00240
10. na 0.0070 billion 0.00227
==================================================
j. cole
TF TFIDF
1. got 0.0055 cole 0.01077
2. like 0.0054 nigga 0.00969
3. know 0.0054 shit 0.00705
4. nigga 0.0053 fuck 0.00697
5. get 0.0051 bitch 0.00584
6. time 0.0045 ville 0.00348
7. never 0.0045 rapper 0.00341
8. shit 0.0045 hoe 0.00301
9. see 0.0044 fuckin 0.00288
10. wa 0.0044 damn 0.00279
==================================================
future
TF TFIDF
1. got 0.0066 nigga 0.01012
2. yeah 0.0062 bitch 0.00898
3. like 0.0062 pluto 0.00784
4. nigga 0.0055 fuck 0.00738
5. bitch 0.0053 shit 0.00627
6. know 0.0053 freebandz 0.00605
7. get 0.0053 lil 0.00482
8. ai 0.0051 rack 0.00453
9. gon 0.0046 skrrt 0.00387
10. go 0.0046 fuckin 0.00376
==================================================
the weeknd
TF TFIDF
1. yeah 0.0097 tryna 0.00570
2. know 0.0096 nigga 0.00552
3. oh 0.0096 fuck 0.00522
4. love 0.0085 bitch 0.00417
5. time 0.0079 starboy 0.00394
6. baby 0.0075 woah 0.00387
7. girl 0.0073 xo 0.00372
8. like 0.0073 uh 0.00363
9. ooh 0.0063 dick 0.00297
10. na 0.0063 sex 0.00296
==================================================
ed sheeran
TF TFIDF
1. know 0.0087 reflected 0.00440
2. love 0.0081 lung 0.00400
3. go 0.0066 soapbox 0.00373
4. let 0.0063 discovering 0.00347
5. like 0.0061 brigade 0.00329
6. got 0.0059 bottle 0.00327
7. one 0.0057 handmade 0.00315
8. time 0.0055 sat 0.00305
9. take 0.0055 favourite 0.00303
10. na 0.0050 whisky 0.00303
==================================================
ariana grande
TF TFIDF
1. yeah 0.0115 mmm 0.00643
2. know 0.0113 shit 0.00593
3. baby 0.0103 tryna 0.00540
4. got 0.0099 yee 0.00462
5. like 0.0097 yuh 0.00379
6. oh 0.0097 ayy 0.00378
7. na 0.0083 woah 0.00374
8. get 0.0083 ariana 0.00369
9. love 0.0081 babe 0.00365
10. make 0.0077 align 0.00361
==================================================
lil durk
TF TFIDF
1. got 0.0060 trench 0.01096
2. ai 0.0059 nigga 0.01045
3. shit 0.0057 shit 0.00896
4. nigga 0.0057 bitch 0.00879
5. get 0.0057 bro 0.00860
6. like 0.0056 lil 0.00751
7. know 0.0054 fuck 0.00737
8. wa 0.0053 smurk 0.00703
9. ca 0.0052 opps 0.00699
10. bitch 0.0052 von 0.00685
==================================================
travis scott
TF TFIDF
1. yeah 0.0066 lit 0.00986
2. like 0.0064 skrrt 0.00800
3. got 0.0058 bitch 0.00712
4. know 0.0057 nigga 0.00620
5. get 0.0053 shit 0.00574
6. back 0.0046 fuck 0.00570
7. go 0.0045 pop 0.00447
8. ai 0.0044 straight 0.00433
9. let 0.0042 lil 0.00394
10. bitch 0.0042 ayy 0.00368
==================================================
young thug
TF TFIDF
1. yeah 0.0058 nigga 0.00973
2. like 0.0058 bitch 0.00957
3. got 0.0058 thugger 0.00879
4. bitch 0.0056 fuck 0.00815
5. nigga 0.0053 slatt 0.00781
6. get 0.0052 slime 0.00758
7. fuck 0.0047 skrrt 0.00663
8. go 0.0045 lil 0.00650
9. know 0.0044 ayy 0.00616
10. ai 0.0043 shit 0.00592
==================================================
billie eilish
TF TFIDF
1. know 0.0113 awfully 0.00654
2. like 0.0113 honest 0.00573
3. na 0.0098 hmm 0.00564
4. ca 0.0082 happier 0.00560
5. say 0.0082 fallen 0.00524
6. could 0.0077 mm 0.00506
7. way 0.0077 crave 0.00502
8. wan 0.0077 deadly 0.00491
9. make 0.0072 veneno 0.00490
10. wa 0.0072 echas 0.00490
==================================================
lil uzi vert
TF TFIDF
1. yeah 0.0063 uzi 0.01422
2. like 0.0062 vert 0.00992
3. got 0.0060 lil 0.00973
4. know 0.0056 bitch 0.00923
5. bitch 0.0054 nigga 0.00898
6. girl 0.0052 skrrt 0.00798
7. get 0.0051 fuck 0.00794
8. nigga 0.0049 ayy 0.00720
9. ai 0.0048 woah 0.00708
10. go 0.0048 shit 0.00695
==================================================
youngboy never broke again
TF TFIDF
1. ai 0.0060 youngboy 0.01269
2. got 0.0059 nigga 0.01085
3. nigga 0.0059 slime 0.00998
4. bitch 0.0058 bitch 0.00975
5. get 0.0056 fuck 0.00873
6. like 0.0055 shit 0.00780
7. know 0.0054 murder 0.00735
8. gon 0.0054 lil 0.00657
9. go 0.0050 hoe 0.00628
10. fuck 0.0050 tryna 0.00628
==================================================
lil baby
TF TFIDF
1. ai 0.0054 nigga 0.00869
2. got 0.0054 bitch 0.00821
3. like 0.0052 shit 0.00754
4. get 0.0051 fuck 0.00724
5. know 0.0051 lil 0.00721
6. bitch 0.0048 tryna 0.00527
7. shit 0.0048 bro 0.00526
8. go 0.0047 trench 0.00501
9. nigga 0.0047 drip 0.00497
10. yeah 0.0047 fucked 0.00402
for i, artist in enumerate(artist_ims.keys()):
fdist = nltk.FreqDist(artist_docs[artist])
artist_tfidf = {t: fdist.freq(t) * idf_dict[t] for t in set(artist_docs[artist])}
wc = WordCloud(mode='RGBA', background_color=None, mask=artist_ims[artist]) # , color_func=MyColorFunctor(decade_tfidf)
wc.generate_from_frequencies(artist_tfidf)
image_colors = ImageColorGenerator(artist_ims[artist])
plt.figure(dpi=200)
plt.imshow(wc.recolor(color_func=image_colors), interpolation='bilinear')
im = convertImage(f"wordcloud_masks/artists/{artist}.jpg")
plt.imshow(im, interpolation='nearest', alpha=0.2)
#plt.title(artist, size=20)
plt.axis("off")
plt.tight_layout()
plt.savefig('wordclouds/artists/' + artist.replace(' ', '_') + '.png', bbox_inches='tight')
plt.show()
These wordclouds tell much the same story as those of the genres and the decades. It is clear that musicians from the sixties and seventies (although also regarded as pop artists) use a vastly different language compared to the musicians who thrive today in the mainstream music scene. One example is Frank Sinatra who uses a lot of long and vey expressive words such as inconcievable or reminding. Another word which shows signs of the time when Frank Sinatra published his music is the word musical which certainly was a thing which was more popular back in the day.
The mainstream rappers such as Juice Wrld uses a lot of swearwords and ad-libs. Juice Wrld died due to an overdosis at a very young age and it is no secret that he was an addict. This makes sense since his wordcloud is overrun with drugs.
Another good comparison is the fact that Elvis uses the word darling a lot whereas popular pop and rap artists nowadays use the word bitch and hoe A LOT more. It is also clear that the audience has changed a lot through the years.
Dispersion plots are interesting as they can give an indication of when certain words were used in music throughout time. As the data table is sorted according to release date it is simple to create a dispersion plot of all the songs. A small modification to the nltk dispersion_plot function had to be implemented to allow for the xticks to be the decades. The function for plotting dispersion plots with custom xticks is shown below with the appertaining dispersion plot of certain handpicked words which illustrate a shift in the language of the mainstream music scene.
# Taken directly from nltk. Modified to allow for custom xticks.
def dispersion_plot(text, words, ignore_case=False, title="Lexical Dispersion Plot", xticks=None):
"""
Generate a lexical dispersion plot.
:param text: The source text
:type text: list(str) or enum(str)
:param words: The target words
:type words: list of str
:param ignore_case: flag to set if case should be ignored when searching text
:type ignore_case: bool
"""
try:
from matplotlib import pylab
except ImportError as e:
raise ValueError(
"The plot function requires matplotlib to be installed."
"See https://matplotlib.org/"
) from e
text = list(text)
words.reverse()
if ignore_case:
words_to_comp = list(map(str.lower, words))
text_to_comp = list(map(str.lower, text))
else:
words_to_comp = words
text_to_comp = text
points = [
(x, y)
for x in range(len(text_to_comp))
for y in range(len(words_to_comp))
if text_to_comp[x] == words_to_comp[y]
]
if points:
x, y = list(zip(*points))
else:
x = y = ()
pylab.plot(x, y, "b|", scalex=0.1)
pylab.yticks(list(range(len(words))), words, color="b")
pylab.ylim(-1, len(words))
pylab.title(title)
pylab.xlabel("Decade by Word Offset")
if xticks is not None:
pylab.xticks(*zip(*decade_tick.items()))
plt.savefig("../static/images/dispersion.png", bbox_inches='tight')
pylab.show()
# Concatenate all documents together in cronological order.
all_tokens = []
decade_tick = {0: 1960}
ny = 1970
for release, tokens in zip(songData.released, songData.tokens):
all_tokens += tokens
year = int(release[:4])
if year >= ny:
decade_tick[len(all_tokens)] = ny
ny += 10
words = nltk.Text(all_tokens)
plt.figure(figsize=(10,3), dpi=135)
dispersion_plot(words, ['swag', 'shawty', 'boogie', 'funky', 'darling' , 'bitch', 'watusi', 'drug', 'skrrt', 'nigga'], xticks=decade_tick)
One can spend an endless amount of time coming up with interesting terms which define certain periods. Thus the dispersion plot above is far from exhaustive of the trends which came and went throughout the last six decades. However, it does tell an interesting story and it illustrates the beginning and ends of eras.
For example, it seems almost as if the sweet word darling was fased out during the nineties and replaced with the more degrading word bitch. boogie and funky also illustrate the rise and fall of funk music. It almost seems from the plot that it died out a bit in the late eighties and then came back in the nineties.
As rap hit the mainstream in the early nineties the word nigga became a ficed part of the rap songs made by black rappers. The words swag and shorty followed around year 2000 - 2010 but has become less used in present time.
The word watusi is included as it is the name of a specific dance which was popular in the sixites. That is also easy to see in the dispersion plot at is almost never used after 1970.
Next the sentiment of the genres, decades and artists is investigated. Here the labMT Hedonometer data from class is used as a lookup table for the sentiment of terms. The sentiment score ranges from 0-10, where 0 is extremely negative and 10 is extremely positive. In order to allow for fast lookup the words are stored in a dictionary with there corresponding sentiment scores. Lastly, the sentiment of a document is computed as a weighted average of the sentiment of all words in the given document which have a sentiment score in the Hedonometer dataframe. All other words are removed so that they do not count towards the average sentiment score. Otherwise this would lead to them counting as 0 e.g. the most negative word one could imagine. Another option is to set those words to have sentiment 5 (which is in the middel), but that may create a bias since the actual average of the sentiment scores in the Hedonometer data is not 5.
labMT = pd.read_csv('Hedonometer.csv', index_col='Rank')
happiness_score = {w: happiness for w, happiness in zip(labMT['Word'], labMT['Happiness Score'])}
words_with_score = set(w for w in labMT['Word'])
def text_happiness_score(token_list):
text = [w for w in token_list if w in words_with_score]
fdist = nltk.FreqDist(text)
return sum([happiness_score[w] * fdist.freq(w) for w in set(text)])
ones again the focus is on the genres previously defined as being the most popular through time.
# Calculate sentiment for each genre
genre_happiness = {}
for genre, doc in top_genre_docs.items():
genre_happiness[genre] = text_happiness_score(doc)
genre_happiness = {k: v for k, v in sorted(genre_happiness.items(), key=lambda item: item[1], reverse=True)}
plt.figure(figsize=(12,4), dpi=135)
plt.title('Average sentiment of genre lyrics')
plt.ylabel('Sentiment score')
plt.bar(*zip(*genre_happiness.items()), color='#3498DB', alpha=0.7)
plt.axhline(np.mean(list(happiness_score.values())), c='#E74C3C', alpha=0.7, label='average sentiment from labMT')
plt.xticks(rotation=30, ha='right')
plt.legend()
plt.ylim(5,6)
plt.xlim(-0.75, len(genre_happiness.items())-0.25)
plt.savefig("../static/images/genre_sentiment.png", bbox_inches='tight')
plt.show()
The results of the sentiment analysis is not very surprising. Most genres have about equal sentiment, but rap and trap do have the lowest sentiment scores albeit still above the average sentiment of all the words in the Hedonometer data. Among the happpiest genres are jazz, soul, funk and country, closely followed by pop.
The same proceedure is caried out now focusing on the decades, however the sentiment for each month is also calculated along with a rolling 1 year average to illustrate the finer nuances of the trend in sentiment.
# Create monthly documents
month_docs = defaultdict(lambda: [])
for tokens, release in zip(songData.tokens, songData.released):
if len(release) == 4 or int(release[:4]) < 1960:
continue
month_docs[release[:7]] += tokens
# Create month sentiment scores
dates = [np.datetime64(month) for month in month_docs.keys()]
month_happiness = [text_happiness_score(doc) for doc in month_docs.values()]
month_happiness = pd.Series(month_happiness, index=dates)
# Compute rolling average of 1 year and plot
rolled_series = month_happiness.rolling("365D").mean()
myFmt = mdates.DateFormatter("%Y")
fig, ax = plt.subplots(figsize=(10,2.5), dpi=400)
plt.title("Rolling average sentiment")
ax.plot(month_happiness.index, month_happiness.values, ls = "--", color='#3498DB', alpha=0.7, label = "monthly average happiness")
ax.plot(rolled_series.index, rolled_series.values, color = '#E74C3C', alpha=0.7, label = "1 year rolling average")
ax.set_ylabel("Average sentiment")
ax.legend()
ax.xaxis.set_major_formatter(myFmt)
plt.savefig("../static/images/rolling_sentiment.png", bbox_inches='tight')
plt.show()
# Calculate sentiment for each decade
decade_happiness = {}
for decade, doc in decade_docs.items():
decade_happiness[decade] = text_happiness_score(doc)
plt.figure(figsize=(12,4), dpi=135)
plt.title('Average sentiment of decade lyrics')
plt.ylabel('Sentiment score')
plt.bar(*zip(*decade_happiness.items()), width=4, color='#3498DB', alpha=0.5)
plt.axhline(np.mean(list(happiness_score.values())), c='#E74C3C', alpha=0.7, label='average sentiment from labMT')
plt.xticks(rotation=30, ha='right')
plt.legend()
plt.ylim(5,6)
plt.savefig("../static/images/decade_sentiment.png",bbox_inches='tight')
plt.show()
The plot displays what have already been established. It seems that lyrics have become less happy through time, and especially in the reason years. Of course this also can be linked to the rise of the angry genres such as rap and its offspring trap. An example was seen in the dispersion plot where darling was used until the nineties where bitch replaced it.
print('Sentiment score of "bitch":', happiness_score['bitch'])
print('Sentiment score of "darling":', happiness_score['darling'])
Sentiment score of "bitch": 3.14 Sentiment score of "darling": 7.22
# Calculate sentiment for each decade
artist_happiness = {}
for artist, doc in artist_docs.items():
artist_happiness[artist] = text_happiness_score(doc)
artist_happiness = {k: v for k, v in sorted(artist_happiness.items(), key=lambda item: item[1])}
top_artist_happiness = {k: v for k, v in sorted(artist_happiness.items(), key=lambda item: item[1]) if k in top_artists}
for artist in artists_with_images.keys():
if artist == 'unknown':
continue
plt.figure(figsize=(6,4), dpi=100)
plt.title('Artist sentiment distribution')
plt.hist(artist_happiness.values(), color='#3498DB', alpha=0.3, bins=40, density=True, label='all artists')
plt.hist(top_artist_happiness.values(), color='green', alpha=0.3, bins=25, density=True, label='top artists')
plt.xlabel('Sentiment score')
plt.axvline(artist_happiness[artist], c='#E74C3C', label=artist)
plt.xlim(4.7, 6.7)
plt.legend()
plt.savefig(f'../static/images/artist_dists/{artist}.png')
plt.show()
The distribution in light blue is over all 7855 artists. The green distribution is only over the 735 top artists. The plots show the the tendency that the old pop artists such as The Beatles and Frank Sinatra have happier lyrics, whereas rappers fall within the left part of the distribution with the lowest average sentiment. In the middle we see a lot of popular pop-artists from the last two decades.
Latent semantic analysis is a method for processing text where the relationship between documents and terms is analysed. In particular, it will here be used to compute the similarity scores between artists. The aim is to uncover which artists are most alike, but also which artists are the least alike. Perhaps it will indicate artists who have used the same ghost-writers. Since songs with colaborations are assigned to all colaborating artists, this means that they will be a lot more likely to be similar. That does in the meantime not mean that the result will not be interesting. Also as mentioned before, one should think twice about putting their name on a song with lyrics that do not fit their agenda. Consine similarity is used since all artists are mapped into a D-dimensional space where D corresponds to the total number of words in the vocabulary. In this case D=50697, which is a lot!
def cosinesimilarity(vec1, vec2):
return vec1@vec2 / (np.linalg.norm(vec1) * np.linalg.norm(vec2))
def similar(artist_vec, doc_term_matrix, artist=None, n=5):
artist_id = artist2id[artist] if artist is not None else -1
top_n_sim = [(None, -1) for _ in range(n)]
for i, artist_b_vec in enumerate(doc_term_matrix):
if i == artist_id:
continue
similarity = cosinesimilarity(artist_vec, artist_b_vec)
if similarity > min(top_n_sim, key=lambda x: x[1])[1]:
top_n_sim[-1] = (id2artist[i], similarity)
top_n_sim = sorted(top_n_sim, key=lambda x: x[1], reverse=True)
return top_n_sim
def unsimilar(artist_vec, doc_term_matrix, artist=None, n=5):
artist_id = artist2id[artist] if artist is not None else -1
bottom_n_sim = [(None, 1) for _ in range(n)]
for i, artist_b_vec in enumerate(doc_term_matrix):
if i == artist_id:
continue
similarity = cosinesimilarity(artist_vec, artist_b_vec)
if similarity < max(bottom_n_sim, key=lambda x: x[1])[1]:
bottom_n_sim[-1] = (id2artist[i], similarity)
bottom_n_sim = sorted(bottom_n_sim, key=lambda x: x[1], reverse=False)
return bottom_n_sim
# Calculate number of times each token appears (This was done to allow for words to be removed if necessary)
token_count = defaultdict(lambda: 0)
for tokens in songData.tokens:
for token in tokens:
token_count[token] += 1
vocabulary = list(token for token, count in token_count.items())
print('Words in vocabulary:', len(vocabulary))
word2id = {word: i for i, word in enumerate(vocabulary)}
Words in vocabulary: 50697
# Create unique term sets for each artist and calculate TF-IDF scores
artist_docs_set = {artist: set(doc) for artist, doc in artist_docs.items()}
idf_dict = {t: idf(t, artist_docs_set) for t in vocabulary}
artist2id = {artist: i for i, artist in enumerate(artist_docs.keys())}
id2artist = {i: artist for i, artist in enumerate(artist_docs.keys())}
# Build the term x artist matrix
term_artist_mat = np.zeros((len(artist_docs.keys()), len(vocabulary)))
for artist, doc in artist_docs.items():
fdist = nltk.FreqDist(doc)
for t in set(doc):
term_artist_mat[artist2id[artist], word2id[t]] = fdist.freq(t) * idf_dict[t]
artist = 'justin bieber'
artist_vec = term_artist_mat[artist2id[artist]]
print('Most similar')
for i, (sim_artist, similarity) in enumerate(similar(artist_vec, term_artist_mat, artist=artist, n=5)):
print(f'{i+1}. {sim_artist:<15} has similarity {similarity:.3f} with {artist}')
print('\nLeast similar')
for i, (unsim_artist, similarity) in enumerate(unsimilar(artist_vec, term_artist_mat, artist=artist, n=5)):
print(f'{i+1}. {unsim_artist:<15} has similarity {similarity:.3f} with {artist}')
Most similar 1. ariana grande has similarity 0.615 with justin bieber 2. taylor swift has similarity 0.615 with justin bieber 3. chris brown has similarity 0.610 with justin bieber 4. the weeknd has similarity 0.606 with justin bieber 5. drake has similarity 0.599 with justin bieber Least similar 1. baauer has similarity 0.002 with justin bieber 2. kali uchis, tainy has similarity 0.003 with justin bieber 3. davon king has similarity 0.004 with justin bieber 4. spacejam jiff has similarity 0.004 with justin bieber 5. k.a.a.n. has similarity 0.004 with justin bieber
To illustrate what can be done with this technique, the five artists most and least similar to justin bieber is shown above. The most similar artists are pop artists. Chris Brown and Drake belong to r&b and rap respectively, however it can certainly be argued that they are quite "poppy". It should also be noted that Taylor Swift and Justin Bieber have not colaborated on a song, so the bias is not completely ruining the similarity scores. Looking at the least similar artists, it is a mix of differet genres. K.A.A.N. is a rapper and Kali Uchis is a quite modern r&b artist.
for artist in artists_with_images.keys():
if artist == 'unknown':
continue
print('='*50)
print('Most similar to:', artist)
artist_vec = term_artist_mat[artist2id[artist]]
for i, (sim_artist, similarity) in enumerate(similar(artist_vec, term_artist_mat, artist=artist, n=5)):
print(f'\t{i+1}. {sim_artist:<15} has similarity {similarity:.3f} with {artist}')
================================================== Most similar to: aretha franklin 1. marvin gaye has similarity 0.593 with aretha franklin 2. elvis presley has similarity 0.567 with aretha franklin 3. stevie wonder has similarity 0.565 with aretha franklin 4. the temptations has similarity 0.555 with aretha franklin 5. diana ross has similarity 0.549 with aretha franklin ================================================== Most similar to: ariana grande 1. justin bieber has similarity 0.615 with ariana grande 2. chris brown has similarity 0.604 with ariana grande 3. the weeknd has similarity 0.594 with ariana grande 4. drake has similarity 0.584 with ariana grande 5. rihanna has similarity 0.558 with ariana grande ================================================== Most similar to: beyoncé 1. jay-z has similarity 0.617 with beyoncé 2. drake has similarity 0.594 with beyoncé 3. chris brown has similarity 0.591 with beyoncé 4. kanye west has similarity 0.582 with beyoncé 5. lil wayne has similarity 0.557 with beyoncé ================================================== Most similar to: billie eilish 1. taylor swift has similarity 0.432 with billie eilish 2. ariana grande has similarity 0.417 with billie eilish 3. justin bieber has similarity 0.414 with billie eilish 4. the weeknd has similarity 0.390 with billie eilish 5. demi lovato has similarity 0.384 with billie eilish ================================================== Most similar to: britney spears 1. justin bieber has similarity 0.494 with britney spears 2. chris brown has similarity 0.471 with britney spears 3. rihanna has similarity 0.457 with britney spears 4. taylor swift has similarity 0.457 with britney spears 5. ariana grande has similarity 0.455 with britney spears ================================================== Most similar to: cher 1. sonny has similarity 0.726 with cher 2. taylor swift has similarity 0.558 with cher 3. dionne warwick has similarity 0.546 with cher 4. elvis presley has similarity 0.538 with cher 5. stevie wonder has similarity 0.522 with cher ================================================== Most similar to: chris brown 1. drake has similarity 0.722 with chris brown 2. lil wayne has similarity 0.704 with chris brown 3. nicki minaj has similarity 0.677 with chris brown 4. t-pain has similarity 0.659 with chris brown 5. kanye west has similarity 0.656 with chris brown ================================================== Most similar to: dj khaled 1. rick ross has similarity 0.685 with dj khaled 2. lil wayne has similarity 0.648 with dj khaled 3. drake has similarity 0.627 with dj khaled 4. chris brown has similarity 0.601 with dj khaled 5. lil baby has similarity 0.591 with dj khaled ================================================== Most similar to: drake 1. lil wayne has similarity 0.784 with drake 2. kanye west has similarity 0.753 with drake 3. lil baby has similarity 0.736 with drake 4. future has similarity 0.725 with drake 5. nicki minaj has similarity 0.722 with drake ================================================== Most similar to: ed sheeran 1. taylor swift has similarity 0.575 with ed sheeran 2. justin bieber has similarity 0.526 with ed sheeran 3. drake has similarity 0.512 with ed sheeran 4. kanye west has similarity 0.490 with ed sheeran 5. the weeknd has similarity 0.490 with ed sheeran ================================================== Most similar to: elton john 1. taylor swift has similarity 0.528 with elton john 2. george michael has similarity 0.509 with elton john 3. keith urban has similarity 0.483 with elton john 4. justin bieber has similarity 0.481 with elton john 5. tim mcgraw has similarity 0.479 with elton john ================================================== Most similar to: elvis presley 1. aretha franklin has similarity 0.567 with elvis presley 2. taylor swift has similarity 0.558 with elvis presley 3. dionne warwick has similarity 0.555 with elvis presley 4. stevie wonder has similarity 0.539 with elvis presley 5. cher has similarity 0.538 with elvis presley ================================================== Most similar to: eminem 1. drake has similarity 0.661 with eminem 2. lil wayne has similarity 0.649 with eminem 3. kanye west has similarity 0.633 with eminem 4. jay-z has similarity 0.598 with eminem 5. 50 cent has similarity 0.595 with eminem ================================================== Most similar to: frank sinatra 1. elvis presley has similarity 0.442 with frank sinatra 2. dionne warwick has similarity 0.422 with frank sinatra 3. taylor swift has similarity 0.420 with frank sinatra 4. stevie wonder has similarity 0.401 with frank sinatra 5. neil diamond has similarity 0.400 with frank sinatra ================================================== Most similar to: future 1. lil baby has similarity 0.764 with future 2. young thug has similarity 0.754 with future 3. lil uzi vert has similarity 0.736 with future 4. drake has similarity 0.725 with future 5. gunna has similarity 0.719 with future ================================================== Most similar to: j. cole 1. drake has similarity 0.688 with j. cole 2. kanye west has similarity 0.646 with j. cole 3. lil wayne has similarity 0.635 with j. cole 4. jay-z has similarity 0.603 with j. cole 5. lil baby has similarity 0.602 with j. cole ================================================== Most similar to: james brown 1. the famous flames has similarity 0.789 with james brown 2. aretha franklin has similarity 0.459 with james brown 3. stevie wonder has similarity 0.418 with james brown 4. wilson pickett has similarity 0.417 with james brown 5. the temptations has similarity 0.409 with james brown ================================================== Most similar to: jay-z 1. kanye west has similarity 0.713 with jay-z 2. drake has similarity 0.694 with jay-z 3. lil wayne has similarity 0.676 with jay-z 4. rick ross has similarity 0.636 with jay-z 5. nicki minaj has similarity 0.620 with jay-z ================================================== Most similar to: juice wrld 1. drake has similarity 0.646 with juice wrld 2. future has similarity 0.637 with juice wrld 3. lil wayne has similarity 0.613 with juice wrld 4. lil uzi vert has similarity 0.609 with juice wrld 5. lil baby has similarity 0.607 with juice wrld ================================================== Most similar to: justin bieber 1. ariana grande has similarity 0.615 with justin bieber 2. taylor swift has similarity 0.615 with justin bieber 3. chris brown has similarity 0.610 with justin bieber 4. the weeknd has similarity 0.606 with justin bieber 5. drake has similarity 0.599 with justin bieber ================================================== Most similar to: kanye west 1. drake has similarity 0.753 with kanye west 2. jay-z has similarity 0.713 with kanye west 3. lil wayne has similarity 0.692 with kanye west 4. big sean has similarity 0.685 with kanye west 5. chris brown has similarity 0.656 with kanye west ================================================== Most similar to: katy perry 1. taylor swift has similarity 0.462 with katy perry 2. justin bieber has similarity 0.447 with katy perry 3. drake has similarity 0.424 with katy perry 4. kanye west has similarity 0.424 with katy perry 5. chris brown has similarity 0.414 with katy perry ================================================== Most similar to: lil baby 1. lil durk has similarity 0.802 with lil baby 2. gunna has similarity 0.780 with lil baby 3. future has similarity 0.764 with lil baby 4. meek mill has similarity 0.748 with lil baby 5. drake has similarity 0.736 with lil baby ================================================== Most similar to: lil durk 1. lil baby has similarity 0.802 with lil durk 2. polo g has similarity 0.710 with lil durk 3. meek mill has similarity 0.675 with lil durk 4. drake has similarity 0.661 with lil durk 5. youngboy never broke again has similarity 0.660 with lil durk ================================================== Most similar to: lil uzi vert 1. future has similarity 0.736 with lil uzi vert 2. young thug has similarity 0.714 with lil uzi vert 3. lil baby has similarity 0.686 with lil uzi vert 4. gunna has similarity 0.674 with lil uzi vert 5. travis scott has similarity 0.647 with lil uzi vert ================================================== Most similar to: lil wayne 1. drake has similarity 0.784 with lil wayne 2. nicki minaj has similarity 0.753 with lil wayne 3. rick ross has similarity 0.708 with lil wayne 4. chris brown has similarity 0.704 with lil wayne 5. kanye west has similarity 0.692 with lil wayne ================================================== Most similar to: madonna 1. taylor swift has similarity 0.541 with madonna 2. justin bieber has similarity 0.522 with madonna 3. stevie wonder has similarity 0.508 with madonna 4. diana ross has similarity 0.507 with madonna 5. aretha franklin has similarity 0.498 with madonna ================================================== Most similar to: marvin gaye 1. tammi terrell has similarity 0.667 with marvin gaye 2. aretha franklin has similarity 0.593 with marvin gaye 3. diana ross has similarity 0.556 with marvin gaye 4. stevie wonder has similarity 0.528 with marvin gaye 5. the four tops has similarity 0.528 with marvin gaye ================================================== Most similar to: michael jackson 1. aretha franklin has similarity 0.494 with michael jackson 2. stevie wonder has similarity 0.488 with michael jackson 3. justin bieber has similarity 0.486 with michael jackson 4. the temptations has similarity 0.482 with michael jackson 5. diana ross has similarity 0.473 with michael jackson ================================================== Most similar to: miley cyrus 1. justin bieber has similarity 0.517 with miley cyrus 2. taylor swift has similarity 0.510 with miley cyrus 3. drake has similarity 0.479 with miley cyrus 4. the weeknd has similarity 0.476 with miley cyrus 5. chris brown has similarity 0.475 with miley cyrus ================================================== Most similar to: nicki minaj 1. lil wayne has similarity 0.753 with nicki minaj 2. drake has similarity 0.722 with nicki minaj 3. chris brown has similarity 0.677 with nicki minaj 4. kanye west has similarity 0.647 with nicki minaj 5. future has similarity 0.645 with nicki minaj ================================================== Most similar to: prince 1. stevie wonder has similarity 0.478 with prince 2. aretha franklin has similarity 0.477 with prince 3. taylor swift has similarity 0.468 with prince 4. justin bieber has similarity 0.459 with prince 5. the temptations has similarity 0.444 with prince ================================================== Most similar to: queen 1. aretha franklin has similarity 0.401 with queen 2. justin bieber has similarity 0.393 with queen 3. stevie wonder has similarity 0.390 with queen 4. the temptations has similarity 0.389 with queen 5. bee gees has similarity 0.382 with queen ================================================== Most similar to: snoop dogg 1. dr. dre has similarity 0.587 with snoop dogg 2. nate dogg has similarity 0.586 with snoop dogg 3. lil wayne has similarity 0.543 with snoop dogg 4. drake has similarity 0.537 with snoop dogg 5. pharrell williams has similarity 0.534 with snoop dogg ================================================== Most similar to: stevie wonder 1. aretha franklin has similarity 0.565 with stevie wonder 2. taylor swift has similarity 0.555 with stevie wonder 3. dionne warwick has similarity 0.540 with stevie wonder 4. elvis presley has similarity 0.539 with stevie wonder 5. the temptations has similarity 0.538 with stevie wonder ================================================== Most similar to: taylor swift 1. justin bieber has similarity 0.615 with taylor swift 2. keith urban has similarity 0.589 with taylor swift 3. kenny chesney has similarity 0.578 with taylor swift 4. tim mcgraw has similarity 0.578 with taylor swift 5. ed sheeran has similarity 0.575 with taylor swift ================================================== Most similar to: the beatles 1. aretha franklin has similarity 0.516 with the beatles 2. taylor swift has similarity 0.488 with the beatles 3. stevie wonder has similarity 0.486 with the beatles 4. elvis presley has similarity 0.484 with the beatles 5. ray charles has similarity 0.484 with the beatles ================================================== Most similar to: the weeknd 1. drake has similarity 0.661 with the weeknd 2. chris brown has similarity 0.635 with the weeknd 3. kanye west has similarity 0.619 with the weeknd 4. justin bieber has similarity 0.606 with the weeknd 5. ariana grande has similarity 0.594 with the weeknd ================================================== Most similar to: travis scott 1. future has similarity 0.693 with travis scott 2. young thug has similarity 0.683 with travis scott 3. drake has similarity 0.679 with travis scott 4. lil baby has similarity 0.672 with travis scott 5. gunna has similarity 0.651 with travis scott ================================================== Most similar to: young thug 1. gunna has similarity 0.780 with young thug 2. future has similarity 0.754 with young thug 3. lil baby has similarity 0.721 with young thug 4. lil uzi vert has similarity 0.714 with young thug 5. travis scott has similarity 0.683 with young thug ================================================== Most similar to: youngboy never broke again 1. lil baby has similarity 0.692 with youngboy never broke again 2. dababy has similarity 0.662 with youngboy never broke again 3. polo g has similarity 0.661 with youngboy never broke again 4. lil durk has similarity 0.660 with youngboy never broke again 5. drake has similarity 0.645 with youngboy never broke again
Overall, we are quite satisfied with the results from the project. We have been able to find interesting attributes for collaborations of artists via our network analysis, and our text analysis shows how the language of the songs we listen to has changed throughout the years, but also from artist to artist and genre to genre.
The custom styling for the website that we created, had a huge role in being able to display the networks and text analysis parts, without overwhelming the reader with a mile long page. If time had permitted it, we would have liked to delve even deeper into the website, adding small features and making the layout even better.
Using the network theory from the course we have been able to create thorough analyses of the different networks for each genre. Furthermore, we expanded on the course material by calculating the betweenness centrality of the networks, in order to see which artists were more collaborative than others.
Unfortunately, an early look into the lexical diversity of the lyrics did not show much, and thus it was not prioritised as highly as the other aspects of the text analysis. Given more time, it would be interesting to look into this more thoroughly.